/* assets/css/style_radio.css */
:root {
    --marine-dark: #001f3f;       /* Sehr dunkles Blau */
    --marine-medium: #003366;     /* Mittleres Blau */
    --marine-light: #004080;      /* Helleres Blau für Inputs */
    --accent: #00d2ff;            /* Neon Cyan für Akzente */
    --text-color: #ffffff;        /* Weiße Schrift */
    --placeholder: #aab8c2;       /* Helles Grau für Platzhalter */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000c1a 0%, var(--marine-medium) 100%);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: var(--text-color);
}

#wishbox-container {
    width: 100%;
    max-width: 500px;
    background: rgba(0, 31, 63, 0.85); /* Dunkles Glas */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    backdrop-filter: blur(15px);
    margin: 20px;
}

.wb-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wb-header h2 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    text-transform: uppercase;
}

#status-indicator {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(0,0,0,0.3);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

#wb-form-wrapper {
    padding: 25px;
}

/* Formular Gruppen */
.wb-group {
    margin-bottom: 15px;
}

.wb-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* NEU: Input Felder Design (Dunkelblau statt Weiß) */
.wb-group input, 
.wb-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05); /* Fast transparent */
    border: 1px solid var(--marine-medium);
    border-radius: 8px;
    color: white;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
}

.wb-group input::placeholder,
.wb-group textarea::placeholder {
    color: var(--placeholder);
    opacity: 0.7;
}

.wb-group input:focus, 
.wb-group textarea:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
    outline: none;
}

.wb-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* NEU: Row für Nebeneinander */
.wb-row {
    display: flex;
    gap: 15px;
}
.wb-col {
    flex: 1; /* Nimmt jeweils 50% Platz */
}

/* Submit Button */
button#submitBtn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;
    background: linear-gradient(90deg, var(--marine-medium), var(--marine-light));
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

button#submitBtn:hover {
    background: var(--accent);
    color: var(--marine-dark);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

button#submitBtn:disabled {
    background: #444;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
}

#responseMsg {
    margin-top: 20px;
    text-align: center;
    font-weight: 600;
    min-height: 20px;
}

/* Ban & Closed Messages */
.info-box {
    text-align: center;
    padding: 40px 20px;
    color: #cbd5e1;
}
.info-box h3 {
    margin-top: 0;
    font-size: 1.4rem;
}
.text-red { color: #ff6b6b; }
.text-orange { color: #feca57; }

/* Mobile Anpassung */
@media (max-width: 480px) {
    #wishbox-container { margin: 0; height: 100vh; border-radius: 0; }
    .wb-row { flex-direction: column; gap: 0; }
}