* {
    font-size: 16px;
}

.dark-version .modal-content {
    background-color: #111c44;
}



ul.notification-list {
    list-style-type: none;
    /* Remove list bullets */
    margin: 0;
    padding: 0;
    width: 100%;
    /* Full width */
}


.notification-item {
    display: block;
    padding: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
    width: 100%;
    /* Ensure each item spans full width */
}

.notification-item:hover {
    background-color: #e9ecef78;
    /* Hover background color */
    color: black;
}

.page-item.active .page-link {
    color: #fff;

}



.accordion-item {
    overflow: hidden;
    /* Prevents overflow from accordion item */
}

.accordion-body {
    height: fit-content;
    /* Set a maximum height for the accordion body */
    overflow-y: auto;
    /* Allows scrolling if content exceeds max-height */
    color: #575757;
}

.accordion-body .flex-container {
    display: flex;
    /* Enables flexbox layout */
    flex-wrap: wrap;
    /* Allows content to wrap within the accordion */
    width: 100%;
    /* Ensures it stays within parent width */
}

.accordion-body .flex-item {
    flex-grow: 0;
    /* Prevents flex items from growing */
    flex-shrink: 0;
    /* Prevents unwanted shrinking */
    min-width: 150px;
    /* Minimum width for each flex item (adjust as needed) */
    margin: 5px;
    /* Adds spacing between flex items */
}




/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 8px;
    /* Width of the scrollbar */
    height: 8px;
    /* Height of the scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background of the scrollbar track */
    border-radius: 7px;
    /* Rounded corners for the track */
}

::-webkit-scrollbar-thumb {
    background: #bab9b9;
    /* Color of the scrollbar thumb */
    border-radius: 7px;
    /* Rounded corners for the thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #b5b5b5;
    /* Color of the scrollbar thumb on hover */
}

/* For Firefox */
.scrollable-element {
    scrollbar-width: thin;
    /* Sets the scrollbar width */
    scrollbar-color: #b8b8b8 #f1f1f1;
    /* Sets the thumb color and track color */
}

/* For Internet Explorer and Edge */
.scrollable-element {
    -ms-overflow-style: -ms-autohiding-scrollbar;
    /* Hides scrollbar until hovered */
}

/* Common styles for scrollable elements */
.scrollable-element {
    height: 300px;
    /* Set height for demonstration */
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding: 10px;
    /* Inner padding */
    border: 1px solid #ccc;
    /* Border for the scrollable area */
}




/* .icon .fa{
    font-size: 22px !important;
} */

.navbar-vertical .navbar-nav .nav-link .icon {
    margin-bottom: 5px;
}

label {
    /* font-weight: bold; */
    font-size: 16px;
    color: rgb(87, 87, 87);
    display: inline-flex;
    align-items: center;
    /* Align text and span vertically */
    gap: 0.5rem;
    /* Add space between "Job Title:" and the span */
}

label span {
    /* font-weight: bold; */
    font-size: 15px;
    color: rgb(0, 0, 0);
}

span i {
    font-size: 28px;
}

#nprogress .bar {
    background: red;
}


/* ######  Social Btns ######## */
.social-auth {
    max-width: 360px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

/* Base */
.btn-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #000000b3;
    transition: all .2s ease;
    background: #fff;
    color: #222;
    font-family: Roboto, Arial, sans-serif;

}

/* Google (official style) */
/* .btn-social.google {
    background: #fff;
    color: #3c4043;
    border-color: #dadce0;
    font-family: Roboto, Arial, sans-serif;
} */

.btn-social.google img {
    width: 18px;
    height: 18px;
}

/* Apple */
.btn-social.apple {
    background: #000;
    color: #fff;
}

.btn-social.apple svg {
    width: 18px;
    height: 18px;
}

/* Facebook */
/* .btn-social.facebook {
    background: #1877F2;
    color: #fff;
} */

.btn-social.facebook svg {
    width: 18px;
    height: 18px;
}

/* X */
.btn-social.x {
    background: #000;
    color: #fff;
}

.btn-social.x svg {
    width: 18px;
    height: 18px;
}

/* Hover */
.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .12);
}

/* ###############  */