body {
    font-family: "Montserrat", sans-serif !important; /* Apply Montserrat font */
}

/* admin dashboard */
.admin-container{
    display: flex;
    max-width: 1441px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px !important;
    margin-bottom: 50px !important;
}

.user-profile-container{
    display: flex;
    max-width: 1441px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px !important;
    margin-bottom: 50px !important;
}
/* .user-profile-container{
    padding: 100px 100px 30px 100px !important;
} */

.user-password-container{
    display: flex;
    max-width: 1441px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px !important;
    margin-bottom: 50px !important;
}
/* .user-password-container{
    padding: 40px 100px 100px 100px !important;
} */

.admin-btn {
    background-color: #195276 !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 14px ;
    font-size: 14px !important;
    font-style: normal !important;
    line-height: 21px !important;
    text-transform: capitalize;
}

.admin-btn-cancel {
    background-color: #484a4b !important;
    color: white !important;
    font-weight: 600 !important;
    border-radius: 14px ;
    font-size: 14px !important;
    font-style: normal !important;
    line-height: 21px !important;
    text-transform: capitalize;
}

.admin-card {
    border-radius: 20px !important; /* Apply border-radius to the whole card */
    overflow: hidden; /* Ensures the rounded corners are respected */
}

.admin-title {
    color: #195276;
    font-weight: 700;
    font-size: 1.5rem; /* Increased title size */
}

.admin-search-bar {
    border-radius: 10px !important; /* Rounded corners */
    padding: 10px 20px; /* Custom padding */
    font-size: 16px; /* Adjust font size */
    border: 1px solid #ddd; /* Light border */
    background-color: #f8f9fa; /* Light background color */
    transition: all 0.3s ease; /* Smooth transition for focus effect */
}

.admin-search-bar:focus {
    /* border-color: rgba(39, 126, 182, 1) !important; */
    box-shadow: none;
    outline: none; /* Remove default outline */
}

.admin-search-bar::placeholder {
    color: #888;
}

.admin-search-bar::-webkit-input-placeholder {
    color: #888; /* Webkit browsers placeholder color */
}

.admin-search-bar:-ms-input-placeholder {
    color: #888; /* IE placeholder color */
}

/* .table-responsive{
    border-color: rgba(39, 126, 182, 1) !important;
    box-shadow: none;
    outline: none;
} */

.table {
    overflow-x: auto !important;
}
.table thead th {
    background-color: rgba(
        225,
        236,
        250,
        1
    ); /* Set your desired background color */
    color: #195276;
}

/* Apply border color when the input is focused */
.form-control:focus {
    /* border-color: rgba(39, 126, 182, 1) !important; */
    box-shadow: none !important; /* Remove box shadow */
    outline: none !important; /* Remove outline */
}

.form-check-input {
    position: relative;
    display: inline-block;
    width: 40px; /* Adjust the width */
    height: 20px; /* Adjust the height */
    border-radius: 30px; /* Make it fully rounded to create the ellipse shape */
    background-color: #bebdbd; /* Default background color */
    border-color: #bebdbd; /* Default border color */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Checked state */
.form-check-input:checked {
    background-color: rgba(39, 126, 182, 1); /* Background color when checked */
    border-color: rgba(39, 126, 182, 1); /* Border color when checked */
}

/* Focused state for checked and unchecked */
.form-check-input:focus {
    box-shadow: none; /* No shadow on focus */
}

/* Focused state when unchecked */
.form-check-input:not(:checked):focus {
    background-color: #bebdbd; /* Background color when focused and unchecked */
    border-color: #bebdbd; /* Border color when focused and unchecked */
}

/* Focused state when checked */
.form-check-input:checked:focus {
    background-color: rgba(
        39,
        126,
        182,
        1
    ); /* Background color when focused and checked */
    border-color: rgba(
        39,
        126,
        182,
        1
    ); /* Border color when focused and checked */
}

.dropify-message p {
    font-size: 16px !important; /* Adjust the font size */
    color: #a3a3a3 !important; /* Adjust the color if needed */
}

/* Change background and text color of selected items */
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: rgba(
        39,
        126,
        182,
        1
    ) !important; /* Change to your desired color */
    color: white !important;
    border: 1px solid rgba(39, 126, 182, 1) !important;
    border-radius: 5px; /* Optional: Add rounded corners */
    padding: 1px 1px;
    font-size: 16px;
}

/* Change hover effect for selected items */
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice:hover {
    background-color: rgba(39, 126, 182, 1) !important;
    border-color: rgba(39, 126, 182, 1) !important;
}

/* Adjust input field inside the selection box */
.select2-container--default .select2-selection--multiple {
    min-height: 40px;
    padding: 2px;
}

.select2-container .select2-selection--single {
    height: 40px !important;
    padding: 0px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}
.select2-container .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

.file-card {
    background-color: rgba(39, 126, 182, 1);
    border-radius: 5px;
}

.file-card a {
    text-decoration: none;
}

.image-uploader .delete-image {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: red;
    border-radius: 50%;
}

.image-uploader .delete-image::after {
    content: '\00d7';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.input-images .image-uploader {
    color: #a3a3a3; /* Change text color */
}

.input-images .image-uploader .uploaded .uploaded-image {
    background-color: #a3a3a3; /* Lighten background if needed */
}

.input-images .image-uploader .uploaded .uploaded-image img {
    filter: brightness(1.2); /* Adjust brightness if images appear too dark */
}

.custom-swal-popup {
    font-size: 14px; /* Adjust as needed */
}
