@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --primary-dark: #0B2C3A;
    --primary-light: #1E6F86;
    --accent-cyan: #42E8E0;
    --accent-gold: #F2C94C;
    --soft-bg: #F4F8FA;
    --text-dark: #0F172A;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient( -45deg, #0B2C3A, #1E6F86, #0F4C5C, #0B2C3A );
    background-size: 400% 400%;
    animation: gradientBG 18s ease infinite;
    color: #ffffff;
    padding: 40px 20px;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 205, 41, 0.45);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(255, 205, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 205, 41, 0);
    }
}

fieldset {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    border-left: 6px solid var(--accent-cyan);
    box-shadow: 0 18px 45px rgba(66,232,224,0.18);
    transition: all .4s ease;
}

    fieldset:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 65px rgba(0,0,0,0.15);
    }

legend {
    background: linear-gradient( to right, var(--primary-dark), var(--primary-light) );
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

    .AlseinTable td:nth-child(1) {
        width: 12px;
        font-weight: 900;
        color: var(--accent-gold);
    }

    .AlseinTable td:nth-child(2) {
        background: #EAF7F9;
        color: var(--primary-dark);
        padding: 15px 20px;
        min-width: 220px;
        font-weight: 700;
        border-radius: 12px 0 0 12px;
        border-left: 4px solid var(--accent-cyan);
        transition: all .3s ease;
    }

    .AlseinTable td:nth-child(3) {
        width: 100%;
    }

    .AlseinTable tr:hover td:nth-child(2) {
        background: linear-gradient( to right, var(--primary-light), var(--accent-cyan) );
        color: #fff;
        padding-left: 30px;
    }

.form-control {
    border: 2px solid #dbe9ee !important;
    border-radius: 0 12px 12px 0 !important;
    padding: 15px !important;
    background: #ffffff !important;
    transition: all .3s ease;
}

    .form-control:focus {
        border-color: var(--accent-cyan) !important;
        box-shadow: 0 0 0 3px rgba(66,232,224,0.25) !important;
        transform: scale(1.02);
    }

.LoadingIcon {
    display: none;
    width: 16px;
}








.btn-success,
.btn-x {
    background: linear-gradient( to right, #124556, #63EBE5 );
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all .4s ease;
    animation: pulseBtn 1s infinite;
}

    .btn-success:hover,
    .btn-x:hover {
        transform: translateY(-5px);
        background: linear-gradient( to right, var(--accent-cyan), var(--primary-light) );
        color: #fff;
    }

.warning-banner,
#tr_konaklamaUyari {
    background: #FFF8E1;
    color: #7A5C00;
    border-left: 8px solid var(--accent-gold);
    padding: 25px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

@media (max-width:992px) {
    fieldset {
        padding: 26px;
    }

    legend {
        font-size: 1rem;
        padding: 8px 22px;
    }

    .btn-success {
        width: 100%;
    }
}

@media (max-width:768px) {
    .AlseinTable tr {
        display: flex;
        gap: 10px;
        background: #f1f7f9;
        padding: 10px;
        border-radius: 10px;
    }

    .AlseinTable td:nth-child(1) {
        display: none;
    }

    .AlseinTable td:nth-child(2) {
        background: transparent;
        border-left: none;
        color: var(--primary-dark);
        padding: 8px 10px;
    }

    .form-control {
        width: 100% !important;
        border-radius: 10px !important;
    }
}

@media (max-width:576px) {
    body {
        padding: 10px;
    }

    legend {
        font-size: .85rem;
    }

    .btn-success {
        font-size: 1rem;
        padding: 15px 22px;
    }
}
