:root {
    --brand-blue: #1800ad;
    --brand-orange: #ff7f00;
    --text-color: #333;
    --bg-light: #f4f6f9;
}

.wecker-wrapper { 
    max-width: 800px; 
    margin: 40px auto; 
    font-family: 'League Spartan', sans-serif; 
    color: var(--text-color); 
}

h2, h3 { font-weight: 700; color: var(--brand-blue); margin-top: 0; }
p { font-weight: 400; line-height: 1.6; font-size: 16px; }

.glass-card { 
    background: #fff; 
    border: 1px solid #e0e0e0; 
    border-radius: 16px; 
    padding: 30px; 
    box-shadow: 0 10px 30px rgba(24, 0, 173, 0.05); 
}
.start-card { text-align: center; padding: 60px 20px; }
.icon-header { font-size: 50px; margin-bottom: 20px; display: block; }

/* KARTEN STYLING */
.tariff-card { 
    background: #fff; 
    border: 1px solid #ddd; 
    border-left: 5px solid var(--brand-blue); 
    border-radius: 8px; 
    padding: 25px; 
    margin-bottom: 25px; 
    position: relative; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.grid-form { display: grid; gap: 20px; margin-bottom: 15px; }
.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .two-col { grid-template-columns: 1fr; } }

.input-group { display: flex; flex-direction: column; }
.full-width-group { margin-bottom: 15px; }

.input-group label { 
    font-size: 13px; 
    font-weight: 700; 
    text-transform: uppercase; 
    color: var(--brand-blue); 
    margin-bottom: 8px; 
    letter-spacing: 0.5px;
}

/* INPUTS & SELECTS FIX */
.input-group input, .input-group select { 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    font-size: 16px; 
    font-family: 'League Spartan', sans-serif;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
    color: #333;
}

/* DROPDOWN FIX (Höhe & Text) */
.input-group select {
    appearance: none;
    -webkit-appearance: none;
    /* Custom Pfeil */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231800ad' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    
    height: 48px !important; /* Verhindert Abschneiden */
    line-height: normal !important;
    padding-right: 35px !important;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--brand-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 0, 173, 0.1);
}

/* Euro Wrapper */
.euro-wrapper { position: relative; }
.euro-wrapper input { padding-right: 30px; }
.euro-sign { 
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%); 
    color: #888; font-weight: bold; 
}

.results-bar { 
    display: flex; justify-content: space-between; 
    margin-top: 20px; padding-top: 20px; 
    border-top: 1px dashed #ddd; font-size: 15px; 
}
.res-item.active { color: var(--brand-orange); font-weight: 700; }

/* BUTTONS */
.btn-primary { 
    background: var(--brand-blue); color: white; 
    padding: 15px 30px; border: none; border-radius: 8px; 
    cursor: pointer; font-size: 18px; font-weight: 700; 
    width: 100%; transition: 0.2s; 
}
.btn-primary:hover { background: #120082; }

.btn-warning { 
    background: var(--brand-orange); color: white; 
    padding: 15px 30px; border: none; border-radius: 8px; 
    cursor: pointer; font-weight: 700; width: 100%; font-size: 16px; 
}
.btn-warning:hover { background: #e67300; }

.btn-outline { 
    background: transparent; border: 2px dashed var(--brand-blue); 
    color: var(--brand-blue); padding: 12px; width: 100%; 
    border-radius: 8px; cursor: pointer; margin-bottom: 30px; 
    font-weight: 700; font-size: 15px; 
}
.btn-outline:hover { background: rgba(24, 0, 173, 0.05); }

.btn-text { 
    background: none; border: none; color: #999; 
    text-decoration: underline; cursor: pointer; font-size: 13px; 
}
.btn-text:hover { color: #d00; }

.action-card { background: var(--bg-light); border: 1px solid #e0e0e0; padding: 25px; border-radius: 12px; margin: 30px 0; }
.link-display-group { background: #fff; padding: 12px; border: 1px solid #ccc; border-radius: 6px; margin: 10px 0; font-family: monospace; color: var(--brand-blue); word-break: break-all; }
.remove-btn { position: absolute; top: 15px; right: 15px; background: transparent; color: #ccc; border: 1px solid #eee; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.remove-btn:hover { color: red; border-color: red; background: #fff0f0; }

.danger-zone { text-align: center; margin-top: 30px; padding-top: 15px; border-top: 1px solid #eee; }
.status-msg { text-align: center; font-weight: 600; min-height: 20px; margin-top: 10px; color: var(--brand-blue); }