html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Dropdown Container */
.custom-dropdown {
    width: 100%;
    padding: 7px 16px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    appearance: none; /* Remove default appearance */
    background-color: transparent;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
}

    /* Add an arrow symbol (Unicode) for the dropdown */
    .custom-dropdown::after {
        content: "\25BC"; /* Unicode arrow down symbol */
        font-size: 12px;
        color: #333;
        margin-left: 10px;
    }

    /* Hover and focus styles */
    .custom-dropdown:hover {
        border-color: #007bff;
        box-shadow: 0 2px 4px rgba(0, 120, 255, 0.4);
        /*background-color: transparent;*/
    }

    .custom-dropdown:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 2px 4px rgba(0, 120, 255, 0.4);
        background-color: transparent;
        color: #333;
    }

    .custom-dropdown.opened {
        background-color: transparent !important;
    }

/* .custom-dropdown option {
        color: white;
    }*/

/*.form-check-input {
    background-color: #6ca0ff !important;
}

.form-check-input:checked {
    background-color: #6ca0ff !important;
    border-color: #6ca0ff !important;
}*/



/*Switch Start*/
:root {
    --switches-bg-color: goldenrod;
    --switches-label-color: white;
    --switch-bg-color: white;
    --switch-text-color: goldenrod;
}


/* container for all of the switch elements 
    - adjust "width" to fit the content accordingly 
*/
.switches-container {
    width: 16rem;
    position: relative;
    display: flex;
    padding: 0;
    position: relative;
    background: var(--vz-primary-bg-subtle);
    line-height: 3rem;
    border-radius: 3rem;
    margin-left: auto;
    margin-right: auto;
}

    /* input (radio) for toggling. hidden - use labels for clicking on */
    .switches-container input {
        visibility: hidden;
        position: absolute;
        top: 0;
    }

    /* labels for the input (radio) boxes - something to click on */
    .switches-container label {
        width: 33.33%; /* Adjusted from 50% to 33.33% */
        padding: 0;
        margin: 0;
        text-align: center;
        cursor: pointer;
        color: var(--vz-primary);
    }

/* switch highlighters wrapper (sliding left / right) 
    - need wrapper to enable the even margins around the highlight box
*/
.switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 33.33%; /* Adjusted from 50% to 33.33% */
    padding: 0.15rem;
    z-index: 3;
    transition: transform .5s cubic-bezier(.77, 0, .175, 1);
    /* transition: transform 1s; */
}

/* switch box highlighter */
[data-bs-theme=light] .switch {
    border-radius: 3rem;
    background: rgb(230,231,233);
    height: 100%;
}

[data-bs-theme=dark] .switch {
    border-radius: 3rem;
    background: white;
    height: 100%;
}

/* switch box labels
    - default setup
    - toggle afterwards based on radio:checked status 
*/
.switch div {
    width: 100%;
    text-align: center;
    opacity: 0;
    display: block;
    color: var(--vz-primary);
    transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
    will-change: opacity;
    position: absolute;
    top: 0;
    left: 0;
}

/* For "All" - No change needed since it's the default position */

/* For "Practice" */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
    transform: translateX(100%);
}

/* For "Calendar" */
.switches-container input:nth-of-type(3):checked ~ .switch-wrapper {
    transform: translateX(200%);
}

/* For "All" */
.switches-container input:nth-of-type(1):checked ~ .switch-wrapper .switch div:nth-of-type(1) {
    opacity: 1;
}

/* Adjust nth-of-type for Practice and Calendar */
.switches-container input:nth-of-type(2):checked ~ .switch-wrapper .switch div:nth-of-type(2),
.switches-container input:nth-of-type(3):checked ~ .switch-wrapper .switch div:nth-of-type(3) {
    opacity: 1;
}

/*Switch End*/


/* CSS for the loading spinner */
.loading-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CSS for the loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.auth-one-bg .bg-overlay {
    background: -webkit-gradient(linear, left top, right top, from(#131c30), to(#272bba));
    background: linear-gradient(to right,#131c30,#272bba);
    opacity: .9;
}

.btn-not-allowed {
    cursor: not-allowed !important;
    pointer-events: unset !important;
}

.offcanvas-backdrop.show {
    opacity: 0 !important;
}

.btn-sm-custom {
    line-height: 7px;
    font-size: var(--vz-badge-font-size);
}

hr.style-two {
    height: 10px;
    border: 0;
    box-shadow: 0 10px 10px -10px #8c8b8b inset;
    width: 25%;
}

.equal-height-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.equal-height-card {
    flex: 1 1 30%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .equal-height-card .card-body {
        flex-grow: 1;
    }

.row-flex {
    display: flex;
    flex-wrap: wrap;
}

.col-content {
    height: 100%;
    padding: 20px 20px 10px;
    color: #fff;
}