@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #020DEE;
    color: #fff;
    margin: 0;
    padding: 20px;
}

fieldset {
    margin-bottom: 2%;
    border: none;
    padding: 15px 20px;
    border-radius: 12px; 
    background-color: white;
}

legend, .legend {
    text-align: center;
    border-bottom: 2px solid #020DEE;
    color: #020DEE;
    font-weight: bold;
    padding-bottom: 5px;
    font-size: 1.2rem;
}

textarea {
    height: 80px;
    resize: none;
    border-radius: 5px;
    border: 1px solid #D7F800;
    padding: 5px;
    background-color: #020DEE;
    color: #fff;
}

.LoadingIcon {
    display: none;
    width: 47px;
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 3px;
}

    .AlseinTable td:nth-child(3n+1) {
        color: #f00;
        width: 12px;
        text-align: center;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .AlseinTable td:nth-child(3n+2) {
        padding: 12px;
        border: 1px solid #D7F800;
        color: #020DEE;
        border-radius: 12px;
        width: 150px;
        text-align: center;
        font-weight: bold;
        background: linear-gradient(270deg, #D7F800, #fff700, #f0ff00, #D7F800);
        background-size: 800% 800%;
        animation: gradientAnim 6s ease infinite, pulseAnim 2s ease-in-out infinite;
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .AlseinTable td:nth-child(3n+2):hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            cursor: pointer;
        }


.uyari-mesaj {
    display: none; 
    background-color: #FFFF00; 
    color: #020DEE; 
    font-weight: bold;
    padding: 15px;
    text-align: center; 
    border: 1px solid #ffeeba; 
    border-radius: 5px;
    margin-top: 10px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.2); 
  
}


.btn-x {
    position: relative;
    background-color: #FFFF00; 
    color: #020DEE; 
    font-weight: bold;
    font-size: 1em;
    padding: 10px 20px;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .btn-x i {
        margin-right: 8px;
    }

    .btn-x:hover {
        background-color: #ffef7f; 
    }





@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseAnim {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.AlseinTable tr {
    transition: transform 0.5s ease, background 0.3s ease;
}

    .AlseinTable tr:hover {
        transform: translateX(5px);
        background: rgba(255, 255, 0, 0.15);
    }
