﻿:root {
    --brand: #E43997; 
    --accent: #7E0A49; 
    --bg: #E43997; 
    --card-bg: #ffffffcc; 
    --txt: #222;
    --txt-light: rgba(34,34,34,0.6);
    --radius: 16px;
    --font-sans: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: #5D1B65;
    color: var(--txt);
    line-height: 1.6;
}


.adkd-form-wrapper {
    max-width: 720px;
    margin: 50px auto;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    animation: fadeIn 0.6s ease-out;
}

.my-btn {
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(253, 185, 86, 0.4);
    transition: all 0.3s ease;
}

    .my-btn:hover {
        background: #FFE6F2;
        box-shadow: 0 6px 15px rgba(253, 185, 86, 0.6);
        transform: translateY(-2px);
    }

    .my-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(253, 185, 86, 0.5);
    }


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

fieldset {
    border: 2px solid var(--brand);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 30px;
    background: #fff; 
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    color: var(--txt);
}

legend {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 4px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
    border: 2px solid rgba(0,0,0,0.1);
    margin-bottom: 20px;
    background: #fff; 
    color: var(--txt);
    transition: all 0.25s ease;
}

    .form-control::placeholder {
        color: var(--txt-light);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 6px rgba(228,57,151,0.15);
        background: #fff;
    }

.btn {
    background: #FFE6F2 !important;
    color: #5D1B65 !important;
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #E43997, #F15B8F);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255,91,58,0.25);
}

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 8px 28px rgba(255,91,58,0.35);
    }

.btn-secondary {
    background: #fff;
    color: var(--brand);
    border: 2px solid var(--brand);
}

    .btn-secondary:hover {
        background: var(--brand);
        color: #fff;
    }

.AlseinTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    border-radius: var(--radius);
    overflow: hidden;
}

    .AlseinTable th {
        background: var(--brand);
        color: #fff;
        text-align: left;
        padding: 14px;
    }

    .AlseinTable td {
        padding: 14px;
       
        background: #fff;
        font-weight: bold;
        color: #E43997;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .AlseinTable tr:nth-child(even) td {
        background: #f9f0f5; 
    }

    .AlseinTable tr:hover td {
        background: #ffe6f2;
    }





.select-wrapper {
    position: relative;
    width: 100%;
}

    .select-wrapper select {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 12px;
        border: 2px solid #e43997;
        background: #FFE6F2;
        color: #5D1B65;
        font-weight: 600;
        appearance: none;
        cursor: pointer;
        box-shadow: 0 6px 12px rgba(228,57,151,0.3);
        transition: all 0.3s ease;
    }

    .select-wrapper::after {
        content: "▼";
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        pointer-events: none;
        color: #5D1B65;
        font-size: 0.9rem;
    }

    .select-wrapper select:hover {
        background: linear-gradient(135deg, #ffb0e8, #ff86ff);
        box-shadow: 0 8px 16px rgba(228,57,151,0.4);
    }

    /* Açılan seçenekler */
    .select-wrapper select option {
        background-color: #ffe6f0; /* pembe kutu */
        color: #6a0dad;
        font-weight: 500;
        padding: 10px;
        border-bottom: 1px solid #f1a1ff; /* kutular arası çizgi efekti */
    }

        /* Üzerine gelince */
        .select-wrapper select option:hover,
        .select-wrapper select option:checked {
            background-color: #ff69b4;
            color: #fff;
        }


















@media (max-width: 768px) {
    .adkd-form-wrapper {
        margin: 20px;
        padding: 24px;
    }

    .btn {
        width: 100%;
        margin-bottom: 12px;
    }
}
