@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-size: cover;
    margin: 0;
    padding: 0;
    background: #404041 !important;
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #2294D1;
}


.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 #2294D1;
    transition: all 0.3s ease;
}

    .my-btn:hover {
        background: #010106;
        box-shadow: 0 6px 15px #020303;
        transform: translateY(-2px);
        color: white;
    }

    .my-btn:active {
        transform: translateY(0);
        box-shadow: 0 3px 8px #020303;
    }

.form-control {
    background-color: #ccc;
    border: 2px solid #D3EBF6;
    color: #D3EBF6;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    margin-bottom: 20px;
}

input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background-color: #FFFFFF;
    border: 2px solid #D3EBF6;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    display: inline-block;
}

    input[type="checkbox"]:hover {
        background-color: #D3EBF6;
    }

    input[type="checkbox"]:checked {
        background-color: #D3EBF6;
        border-color: #000;
    }

        input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 6px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }


label {
    font-size: 1rem;
    color: black;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

    label:hover {
        color: #D3EBF6;
    }

textarea {
    height: 100px;
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    background-color: #FFFFFF;
    color: #D3EBF6;
    font-size: 1rem;
    border: 2px solid #D3EBF6;
    resize: none;
    box-sizing: border-box;
}

    textarea:focus {
        outline: none;
        border-color: #D3EBF6;
    }

fieldset {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #D3EBF6;
    margin-bottom: 20px;
    box-shadow: 0px 0px 15px #D3EBF6;
}

legend {
    font-size: 1.5rem;
    font-weight: 600;
    color: #A90302;
    border-bottom: 2px solid #A90302;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.UpdatePanel {
    padding: 30px;
    background-color: #93C561;
    border-radius: 8px;
    box-shadow: 0 0 20px #93C561;
}

    .UpdatePanel .row {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .UpdatePanel .col-md-8 {
        padding: 30px;
        background-color: #FFFFFF;
        border-radius: 10px;
        border: 2px solid #93C561;
        box-shadow: 0px 0px 15px #93C561;
    }

.AlseinTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: yellow;
    border-radius: 10px;
    overflow: hidden;
}

    .AlseinTable td {
        padding: 10px;
        text-align: center;
        color: #93C561;
    }

        .AlseinTable td:nth-child(odd) {
            background-color: #93C561;
        }

        .AlseinTable td:nth-child(even) {
            background-color: #FFFFFF;
        }

    .AlseinTable tr:hover {
        background-color: #93C561;
        color: #FFFFFF;
        transition: 0.3s;
    }

.LoadingIcon {
    display: none;
    width: 50px;
    margin-top: 20px;
}




.unvan-checkbox-style input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #404041;
    border-radius: 4px;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
}

    .unvan-checkbox-style input[type="radio"]:checked::before {
        content: '';
        width: 10px;
        height: 10px;
        background-color: #404041;
        position: absolute;
        top: 3px;
        left: 3px;
        border-radius: 2px;
    }

.unvan-checkbox-style label {
    margin-right: 20px;
    font-size: 1rem;
    cursor: pointer;
}
