@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background: #DADADA;
    background: linear-gradient(90deg, rgba(218, 218, 218, 1) 0%, rgba(214, 214, 214, 1) 14%, rgba(231, 231, 231, 1) 21%, rgba(230, 230, 230, 1) 33%, rgba(203, 203, 203, 1) 56%, rgba(202, 202, 202, 1) 63%, rgba(203, 203, 203, 1) 78%, rgba(255, 255, 255, 1) 90%, rgba(246, 246, 246, 1) 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
}

fieldset {
    margin: 20px auto;
    padding: 20px;
    border: none;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 100%;
    transition: transform 0.3s ease;
}

    fieldset:hover {
        transform: translateY(-3px);
    }

/* Başlık */
legend, .legend {
    text-align: center;
    font-size: 1.2rem;
    border-bottom: 2px solid #FF6B35;
    color: #FF6B35;
    font-weight: 600;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

/* Textarea */
textarea {
    height: 100px;
    resize: none;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

    textarea:focus {
        border-color: #2C3D97;
        outline: none;
        box-shadow: 0 0 6px rgba(44, 61, 151, 0.4);
    }

/* Loading Icon */
.LoadingIcon {
    display: none;
    width: 50px;
    margin: auto;
}

/* Tablo */
.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

    .AlseinTable td:nth-child(3n+1) {
        color: #E63946;
        width: 20px;
        text-align: center;
        font-weight: bold;
    }

    .AlseinTable td:nth-child(3n+2) {
        padding: 10px;
        border-radius: 8px;
        width: 160px;
        text-align: center;
        font-weight: 600;
        background: linear-gradient(135deg, #2C3D97, #4A5BB5);
        color: #fff;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .AlseinTable td:nth-child(3n+2):hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(44, 61, 151, 0.4);
        }

@media (max-width: 768px) {
    fieldset {
        padding: 15px;
    }

    .AlseinTable td:nth-child(3n+2) {
        width: auto;
        font-size: 0.9rem;
        padding: 8px;
    }

    legend {
        font-size: 1rem;
    }
}
