@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background: #EBF7F7;
    background-size: 400% 400%;
    animation: bgMove 20s ease infinite;
    color: #fff;
}

@keyframes bgMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

fieldset {
    border: none;
    border-left: 5px solid #1E83C5;
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-top: 24px;
}

    fieldset:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

legend {
    color: #1E83C5;
    font-weight: 700;
    font-size: 1.1rem;
}



textarea {
    height: 80px;
    resize: none;
    border-radius: 8px;
    border: 2px solid #36627B;
    padding: 8px 10px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

    textarea:focus {
        border-color: #1E83C5;
        box-shadow: 0 0 12px rgba(30, 131, 197, 0.6);
        transform: scale(1.02);
    }

.LoadingIcon {
    display: none;
    width: 40px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-control:disabled {
    background-color: none;
    opacity: 1;
}

.AlseinTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;
}

    .AlseinTable td:nth-child(1) {
        color: #ff6b6b;
        width: 10px;
        text-align: center;
        font-weight: bold;
    }

    .AlseinTable td:nth-child(2) {
        color: #DAB72A;
        font-weight: 600;
        width: 200px;
        text-align: left;
    }

    .AlseinTable td:nth-child(3) {
        padding: 5px;
    }



    .AlseinTable input::placeholder,
    .AlseinTable textarea::placeholder {
        color: #ccc;
        opacity: 0.8;
    }

    .AlseinTable input, .AlseinTable select, .AlseinTable textarea {
        background: #f9f9f9;
        border: 2px solid #ddd;
        border-radius: 6px;
        padding: 10px;
        transition: all 0.3s ease;
    }

        .AlseinTable input:focus {
            border-color: #1E83C5;
            box-shadow: 0 0 8px rgba(30,131,197,0.3);
        }

    .AlseinTable select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: linear-gradient(135deg, #3A6073, #16222A);
        padding: 10px 40px 10px 12px;
        border-radius: 8px;
        border: 1px solid #2F4F59;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        outline: none;
        transition: all 0.3s ease;
        background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23ffffff'><path d='M2 5l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 14px;
        box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    }

        /* Hover efekti */
        .AlseinTable select:hover {
            background: linear-gradient(135deg, #467e93, #1b2d33);
            border-color: #36627B;
        }

        /* Focus (seçildiğinde) */
        .AlseinTable select:focus {
            border-color: #36627B;
            box-shadow: 0 0 6px rgba(0, 212, 255, 0.6);
        }

        /* Açılan seçeneklerin görünümü */
        .AlseinTable select option {
            background-color: #20333b;
            color: #ffffff;
            padding: 8px;
            font-size: 14px;
        }







.btn-success {
    background-color: #1E83C5;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

    .btn-success:hover {
        background-color: #166a9c;
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    }
