@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

/* ===== ROOT COLORS (Banner uyumlu) ===== */
:root {
    --ana-lacivert: #0B1E3A;
    --koyu-lacivert: #08162A;
    --neon-mavi: #00D4FF;
    --medikal-mavi: #4FC3F7;
    --neon-pembe: #FF2D95;
    --soft-beyaz: #EAF4FF;
}

/* ===== BODY ===== */
body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #08162A, #0B1E3A);
    color: var(--soft-beyaz);
    margin: 0;
    min-height: 100vh;
    position: relative;
}

    /* Arka plan ışık efekti */
    body::before {
        content: "";
        position: fixed;
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, var(--neon-pembe), transparent);
        top: 20%;
        left: 40%;
        opacity: 0.15;
        filter: blur(100px);
        z-index: 0;
    }

/* ===== FIELDSET ===== */
fieldset {
    border: none;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border-radius: 25px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* ===== LEGEND ===== */
legend {
    background: linear-gradient(45deg, var(--neon-mavi), var(--medikal-mavi));
    color: #001;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

/* ===== INFO BOX ===== */
div[style*="background-color:white"] {
    background: rgba(255,255,255,0.08) !important;
    border-left: 4px solid var(--neon-mavi) !important;
    border-radius: 15px !important;
    color: var(--soft-beyaz) !important;
    padding: 20px !important;
    margin-bottom: 25px !important;
}

    div[style*="background-color:white"] h4 {
        color: var(--neon-mavi) !important;
        font-weight: 700 !important;
    }

/* ===== TABLE ===== */
.AlseinTable {
    width: 100%;
    border-spacing: 0 10px;
    border-collapse: separate;
}

    .AlseinTable td {
        padding: 8px;
        vertical-align: middle;
    }

/* ===== INPUT ===== */
input[type="text"],
input[type="time"],
select,
.form-control {
    width: 100% !important;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(255,255,255,0.05);
    color: white;
    transition: 0.3s;
}

    /* Focus */
    input:focus,
    select:focus {
        outline: none;
        border-color: var(--neon-mavi);
        box-shadow: 0 0 10px var(--neon-mavi);
        background: rgba(255,255,255,0.08);
    }

/* Placeholder */
::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ===== RADIO BUTTON ===== */
.rbtnList {
    display: flex;
    gap: 15px;
}

    .rbtnList label {
        cursor: pointer;
        background: rgba(255,255,255,0.05);
        padding: 12px 25px;
        border-radius: 50px;
        font-weight: 600;
        color: var(--soft-beyaz);
        border: 1px solid rgba(0,212,255,0.2);
        transition: 0.3s;
    }

    .rbtnList input[type="radio"] {
        display: none;
    }

        .rbtnList input[type="radio"]:checked + label {
            background: linear-gradient(45deg, var(--neon-mavi), var(--neon-pembe));
            color: white;
            box-shadow: 0 0 15px var(--neon-mavi);
        }

/* ===== BUTTON ===== */
.btn-animated-confirm {
    background: linear-gradient(45deg, var(--neon-mavi), var(--neon-pembe));
    color: white !important;
    padding: 18px 60px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transition: 0.4s;
    display: inline-block;
}

    /* Hover */
    .btn-animated-confirm:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px var(--neon-pembe);
    }

/* ===== FIX (ÖNEMLİ) ===== */
/* Senin eski CSS'te bu hatalıydı, kaldırdım */
button, input, optgroup, select, textarea {
    display: initial;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    fieldset {
        padding: 20px;
    }

    .AlseinTable tr,
    .AlseinTable td {
        display: block;
        width: 100%;
    }

    .btn-animated-confirm {
        width: 100%;
        padding: 15px;
    }

    .rbtnList {
        flex-direction: column;
    }
}
