.inner-login-content
{
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.inner-login-box
{
    padding: 6%;
    background: white;
    border-top: 3px solid #5F4099;
    min-width: 320px;
}

.login-label
{
    color: #949494
}

.forget-password
{
    color: #5F4099;
    text-decoration: none;
}

.login-title
{
    color: #5F4099;
    font-size: 30px;
    font-weight: bold;
}

.alert-messages
{
    padding-bottom: 0;
}

.navbar-link-container
{
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-left: 20px;
    gap: 20px;
}

.navbar-link
{
    color: white !important;
    text-decoration: none;
}

.navbar-link-bordered
{
    border-left: 1px solid black;
}

.navbar-links
{
    display: flex;
}

.navbar-name
{
    font-size: 20px;
    font-weight: bold;
}

.search-button
{
    float: right;
    background: transparent;
    border: none;
    z-index: 100;
    margin-top: 2px;
}

.filter-button
{
    float: right;
    background: transparent;
    border: none;
    z-index: 100;
    margin-top: 2px;
}

#providers_filter
{
    display: none;
}

#tasks_filter {
    display: none;
}

.navbar-grey
{
    background: #C3C3C3;
}

.navbar-logo-details
{
    font-size: 24px;
    margin: auto 20px auto 0;
}

.navbar-logout
{
    font-size: 22px;
}

.navbar-logout a
{
    color: white !important;
    text-decoration: none;
}

.details-navbar-button
{
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 20px;
    border: 1px solid #BFBFBF;
}

.past-session {
    background-color: #d4edda !important; /* Light green background */
}

.create-banner-message {
    background: transparent;
    border: none;
}

@media only screen and (min-device-width: 768px) {
    .details-flex
    {
        display: flex;
    }

    .left
    {
        width: 70%;
    }

    .right
    {
        height: 85vh;
        width: 30%;

        position: fixed;
        right: 2%;

        padding: 1% 1%;
    }
}

@media only screen and (max-device-width: 767px) {
    .left
    {
        width: 100%;
    }

    .right
    {
        width: 100%;
        padding: 1% 1%;
    }
}
.active {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 2px;
}
/**
 Spinner
 */

.loader-container
{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #000;
    opacity: 25%;
    z-index: 100;
}

.spinner
{
    width: 64px;
    height: 64px;
    border: 8px solid;
    border-color: #3d5af1 transparent #3d5af1 transparent;
    border-radius: 50%;
    animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim
{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
