/* Base styles and resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
    font-family:
            "Montserrat",
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    background-color: #fff;
    color: #000;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family:
            "Montserrat",
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Main container */
.main {
    background-color: #fff;
    display: flex;
    align-items: stretch;
    gap: 2px;
    /*overflow: hidden;*/
    /*flex-wrap: wrap;*/
    flex-direction: row;
    overflow: hidden;
    height: 100vh;
}

.card-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px !important;
    position: relative;
    width: 100%;
    /*margin-top: 15px;*/
    /*margin-bottom: 15px;*/
}

.m-t-15 {
    margin-top: 15px;
}

/* Modal content */
.modal-content {
    /*min-height: 533px;*/
    width: 100%;
    padding: 20px 24px;
    font-size: 14px;
}

.modal-row {
    width: 100%;
}

.form-field {
    width: 100%;
    margin-bottom: 16px;
}

.field-label {
    align-self: flex-start;
    gap: 2px;
    color: #414651;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.text-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #717680;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
}

.text-input::placeholder {
    color: #717680;
}

.dropdown-container {
    position: relative;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    background-color: #fff;
    display: flex;
    width: 100%;
    padding: 10px 14px;
    gap: 8px;
    overflow: hidden;
    color: #717680;
    font-weight: 400;
    line-height: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.dropdown-input {
    flex: 1;
    min-width: 240px;
    border: none;
    outline: none;
    background: transparent;
    color: #717680;
    font-family: inherit;
    font-size: 14px;
    appearance: none;
    width: calc(100% - 20px);
}

.dropdown-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin: auto 0;
    flex-shrink: 0;
    pointer-events: none;
}

.textarea-input {
    flex: 1;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    background-color: #fff;
    min-height: 118px;
    width: 100%;
    padding: 12px 14px;
    gap: 8px;
    overflow: hidden;
    color: #717680;
    font-weight: 400;
    line-height: 24px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
}

.form-row {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 21px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}


.form-control {
    /*color: #717680;*/
    font-family: inherit;
    font-size: 14px;
}

/* Sidebar navigation */
.sidebar-navigation {
    align-items: stretch;
    background-color: #fff;
    display: flex;
    padding-left: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    justify-content: start;

    /*newly added*/
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    border-right: 1px solid #e9eaeb;
    background: #fff;
}

.sidebar-content {
    border-radius: 12px;
    border: 1px solid #e9eaeb;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    background-color: #fff;
    width: 100%;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.sidebar-header {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 20px;
}

.logo-image {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 32px;
}

.sidebar-nav {
    display: flex;
    margin-top: 16px;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.nav-item-button {
    border-radius: 6px;
    display: flex;
    min-height: 40px;
    width: 40px;
    padding: 10px 8px;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}


.add-action-buttons {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.add-cancel-button {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #fff;
    border:1px solid #D5D7DA;
    display: flex;
    gap: 6px;
    overflow: hidden;
    color: #414651;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
}

.add-button {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background-color: #0033A0;
    display: flex;
    gap: 6px;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    padding: 10px 20px;
}


.nav-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.sidebar-navigation {
    display: flex;
    flex-direction: column;
    height: 100vh; /* Full height of the viewport */
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sidebar-nav {
    flex-grow: 1; /* Pushes the footer to the bottom */
}

.sidebar-footer {
    display: flex;
    width: 100%;
    padding: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically */
    margin-top: auto; /* Pushes the footer to the bottom */
}


.footer-nav {
    width: 100%;
    max-width: 40px;
}

.user-avatar-container {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    margin-top: 16px;
    width: 40px;
}

.user-avatar {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.avatar-border {
    position: relative;
    border-radius: 200px;
    border: 0.75px solid #000;
    opacity: 0.08;
    display: flex;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 29px;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    width: 100%;
    height: 40px;
}

.online-indicator {
    border-radius: 5px;
    border: 1.5px solid #fff;
    background-color: #17b26a;
    z-index: 10;
    display: flex;
    width: 13px;
    flex-shrink: 0;
    height: 13px;
}

.nav-item-button.active .nav-icon {
    filter: invert(60%) sepia(87%) saturate(460%) hue-rotate(345deg) brightness(102%) contrast(103%);
}

/* Main content area */
.main-content {
    margin-top: 10px;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    width: fit-content;

    /* newly added*/
    margin-left: 80px; /* Same as sidebar width */
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: calc(100vw - 80px);
}


.content-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 20px;
    /*newly added*/
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    min-height: 32px;
    
    max-width: 100%;
    align-items: center;
    gap: 8px;
    justify-content: start;

    /*newly added*/
    position: fixed;
    top: 0;
    left: 80px; /* Same as sidebar width */
    right: 0;
    z-index: 900;
    background: #fff;

    padding: 15px 20px;
}

.breadcrumb-button {
    align-self: stretch;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    align-items: start;
    justify-content: start;
    width: 20px;
}

.breadcrumb-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
}

.breadcrumb-separator {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.breadcrumb-current {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    font-size: 14px;
    color: #efa42b;
    font-weight: 600;
    line-height: 1;
}

/* Change border color to red */
.select2-container--default .select2-selection--single {
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    font-size: 14px;
    height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered
{
    line-height: 36px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    height: 36px !important;
}
/* Header container */
.header-container {
    position: sticky;
    top: 0;
    z-index: 99; /* Ensure it's above other content */
    background-color: white; /* Optional: to avoid overlap transparency */
    display: flex;
    margin-top: 0;
    width: 100%;
    align-items: stretch;
    gap: 30px;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    flex-wrap: wrap;
    padding: 10px 20px; /* Optional spacing */
    border-bottom: 1px solid #ddd; /* Optional divider */
}

.page-header {
    display: flex;
    min-height: 50px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    width: fit-content;
}

.page-title {
    color: #181d27;
    font-size: 16px;
    font-weight: 700;
    line-height: 2;
}

.page-description {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    color: #535862;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0px;
}

.header-actions {
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    align-items: stretch;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
}

.export-button {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    background-color: #fff;
    display: flex;
    padding: 5px 10px;
    gap: 4px;
    overflow: hidden;
    color: #414651;
    white-space: nowrap;
}
.uploadfile-button {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    background-color: #fff;
    display: flex;
    padding: 5px 10px;
    gap: 4px;
    overflow: hidden;
    color: #414651;
    white-space: nowrap;
}

.button-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.button-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 14px;
}

.content-divider {
    background-color: #e9eaeb;
    display: flex;
    margin-top: 20px;
    flex-shrink: 0;
    max-width: 100%;
    height: 1px;
    border: none;
}


/* User table section */
.table {
 
    padding-bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.table-section {
    width: 100%;
}

.table-container {
    width: 100%;
    overflow-x: auto;
}

/* Search and filters */
.filters {
    display: flex;
    width: 100%;
    align-items: start;
    gap: 40px 100px;
    margin-bottom: 10px;
    white-space: nowrap;
    justify-content: space-between;
    flex-wrap: wrap;
}

.search-dropdown {
    min-width: 240px;
    color: #717680;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    max-width: 400px;
}

.input-with-label {
    width: 100%;
}

.input-container {
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    background-color: #fff;
    display: flex;
    width: 100%;
    padding: 5px 10px;
    gap: 8px;
    overflow: hidden;
    justify-content: start;
}

.input-content {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 8px;
    font-family:
            Montserrat,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 16px;
    font-weight: 400;
    justify-content: start;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.search-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 20px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.search-input {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex: 1;
    font-size: 14px;
    flex-shrink: 1;
    flex-basis: 0%;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    color: inherit;
}

.shortcut-wrapper {
    border-radius: 4px;
    border: 1px solid #e9eaeb;
    mix-blend-mode: multiply;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    padding: 1px 4px;
    font-family:
            Inter,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family:
            Montserrat,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 14px;
    color: #414651;
    font-weight: 600;
    line-height: 1;
    justify-content: start;
}

.filter-button {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    background-color: #fff;
    align-self: stretch;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    padding: 5px 10px;
    gap: 4px;
    overflow: hidden;
}


/* Data table */
.data-table {
    justify-content: center;
    align-items: stretch;
    border-radius: 12px;
    border: 1px solid #e9eaeb;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    background-color: #fff;
    display: flex;
    margin-top: 10px;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
}

.table-content {
    align-items: start;
    background-color: #fff;
    display: flex;
    width: 100%;
    justify-content: start;
    flex-wrap: wrap;
}

/* Table columns */
.table-column {
    font-family:
            Montserrat,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    flex-grow: 1;
    flex-shrink: 1;
}

.name-column {
    width: 192px;
}

.category-column {
    width: 190px;
}

.make-column {
    width: 102px;
}

.type-column {
    width: 98px;
    white-space: nowrap;
}

.rating-column {
    width: 64px;
    white-space: nowrap;
}

.rate-column {
    width: 61px;
    white-space: nowrap;
}

.status-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-family:
            Montserrat,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 12px;
    color: #414651;
    font-weight: 500;
    white-space: nowrap;
    justify-content: center;
    flex-grow: 1;
    flex-shrink: 1;
    width: 94px;
}

.updated-on-column {
    width: 112px;
}

.updated-by-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-family:
            Montserrat,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 14px;
    justify-content: center;
    flex-grow: 1;
    flex-shrink: 1;
    width: 152px;
}

.actions-column {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    flex-grow: 1;
    flex-shrink: 1;
    width: 73px;
}

/* Table header cells */
.table-header-cell {
    align-items: center;
    border-bottom: 1px solid #e9eaeb;
    background-color: #fafafa;
    display: flex;
    min-height: 44px;
    width: 100%;
    padding: 13px 10px;
    gap: 12px;
    font-size: 12px;
    color: #717680;
    font-weight: 600;
    white-space: nowrap;
    justify-content: start;
}

.table-header {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    gap: 4px;
}

.table-header-with-icon {
    align-self: stretch;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 4px;
    justify-content: start;
}

.header-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.sort-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 12px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

/* Table cells */
.table-cell {
    align-items: center;
    border-bottom: 1px solid #e9eaeb;
    display: flex;
    min-height: 72px;
    width: 100%;
    padding: 26px 10px;
    gap: 12px;
    line-height: 1;
    justify-content: start;
}

.table-action-cell {
    align-items: center;
    display: flex;
    width: 100%;
    gap: 5px;
    line-height: 1;
    justify-content: start;
}

.last-cell {
    white-space: nowrap;
}

.cell-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.category-column .table-cell {
    padding: 9px 10px;
    line-height: 20px;
}

.rate-column .table-cell {
    align-self: stretch;
    border-bottom: 1px solid #e9eaeb;
    min-height: 72px;
    width: 100%;
    padding: 26px 10px;
    line-height: 1;
}


.status-column .table-cell {
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e9eaeb;
    display: flex;
    min-height: 72px;
    width: 100%;
    padding: 25px 10px;
    text-align: center;
}

.updated-on-column .table-cell {
    align-self: stretch;
    border-bottom: 1px solid #e9eaeb;
    min-height: 72px;
    width: 100%;
    padding: 26px 24px;
    line-height: 1;
}

.updated-by-column .table-cell {
    align-items: center;
    border-bottom: 1px solid #e9eaeb;
    display: flex;
    min-height: 72px;
    width: 100%;
    padding: 16px 10px;
    gap: 12px;
    white-space: nowrap;
    line-height: 1;
    justify-content: start;
}


.actions-column .table-cell {
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #e9eaeb;
    display: flex;
    min-height: 72px;
    width: 100%;
    max-width: 73px;
    padding: 22px 7px 22px 8px;
    gap: 2px;
}

.actions-column .table-header-cell {
    align-self: stretch;
    border-bottom: 1px solid #e9eaeb;
    background-color: #fafafa;
    display: flex;
    min-height: 44px;
    width: 100%;
    gap: 12px;
}

/* Status badges */
.status-badge {
    align-items: center;
    border-radius: 6px;
    border: 1px solid;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    background-color: #fff;
    align-self: stretch;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    padding: 2px 6px;
    gap: 4px;
    justify-content: start;
}

.status-badge.active {
    border-color: #17b26a;
}

.status-badge.pending {
    border-color: #414651;
}


.status-badge.locked {
    border-color: #FF9500;
}

.status-badge.deactivated {
    border-color: #F04438;
}
    .status-badge.approved {
        border-color: #17b26a;
    }
    .status-badge.rejected {
        border-color: #F04438;
    }

.badge-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 8px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.badge-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

/* User info */
.user-info {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.user-name {
    color: #181d27;
    font-weight: 500;
    margin-bottom: 5px;
}

.user-email {
    color: #535862;
    font-weight: 400;
}

/* Action buttons */
.action-button {
    border-radius: 8px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    padding: 2px;
    align-items: center;
    overflow: hidden;
    justify-content: center;
    width: 28px;
    min-height: 28px;
    display: inline-block;
    margin-right: 2px; /* Optional spacing between buttons */
    vertical-align: middle;
}

.action-icon {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 16px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

/* Pagination */
.table-pagination {
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e9eaeb;
    display: flex;
    width: 100%;
    padding: 12px 24px 16px;
    gap: 12px;
    font-family:
            Montserrat,
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 14px;
    color: #414651;
    line-height: 1;
    flex-wrap: wrap;
}

.pagination-details {
    font-weight: 500;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.pagination-actions {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    white-space: nowrap;
    justify-content: end;
    flex-wrap: wrap;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

.pagination-button {
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #d5d7da;
    background-color: #fff;
    align-self: stretch;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    padding: 8px 12px;
    gap: 4px;
    overflow: hidden;
}

.pagination-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer styling */
.page-footer {
    align-items: center;
    border-top: 1px solid #e9eaeb;
    background-color: #fff;
    display: flex;
    min-height: 50px;
    flex-direction: column;
    overflow: hidden;
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    color: #717680;
    font-weight: 400;
    justify-content: center;
    margin-top: auto; /* Push footer to bottom */
    /* Newly added*/
    position: fixed;
    left: 80px; /* Same as sidebar width */
    right: 0;
    bottom: 0;
    z-index: 900;
    background: #fff;
    border-top: 1px solid #e9eaeb;
}


.footer-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}


.footer-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 24px 100px;
    justify-content: space-between;
    flex-wrap: wrap;
}


.footer-logo {
    aspect-ratio: 2.97;
    object-fit: contain;
    object-position: center;
    width: 83px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.footer-text {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

/*.main-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}*/

.footer {
    margin-top: auto;
    padding: 10px;
    background-color: #f1f1f1;
    text-align: center;
    font-size: 14px;
}

.gray-icon {
    filter: invert(12%) sepia(10%) saturate(267%) hue-rotate(178deg) brightness(95%) contrast(92%);
}
.green-icon {
    filter: invert(43%) sepia(73%) saturate(450%) hue-rotate(128deg) brightness(91%) contrast(90%);
}

.red-icon {
    filter: brightness(0) saturate(100%) invert(38%) sepia(90%) saturate(545%) hue-rotate(341deg) 
    brightness(95%) contrast(99%);
}

.orange-icon {
    filter: brightness(0) saturate(100%) invert(57%) sepia(97%) saturate(854%) 
    hue-rotate(2deg) brightness(106%) contrast(106%);
}

.invalid-feedback {
    font-size: 12px;
}

.badge, .badge:hover, .badge:active {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;
    font-weight: 400 !important;
}

.paginate_button {
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
}

.paginate_button.current {
    background: rgba(0, 0, 0, 0.3) !important;
}


.btn-primary {
    background-color: #0033A0 !important;
    border: 1px solid #0033A0 !important;
}

.fs-14 {
    font-size: 14px !important;
}
.fs-12 {
    font-size: 12px !important;
}

.disabled-btn {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.permission-checkbox:checked {
    background-color: #efa42b !important;
    border-color: #efa42b !important;
}

    .permission-checkbox:checked + label {
        color: inherit !important;
        font-weight: normal;
    }
.status-badge.won {
    background-color: #d4edda;
}

.status-badge.lost {
    background-color: #f8d7da;
}

.status-badge.in-progress {
    background-color: #e2e3e5;
}
.btn-won {
    background-color: #28a745; /* Bootstrap green */
    color: white;
    border: none;
}
.disabled-icon {
    filter: grayscale(100%);
    opacity: 0.5;
}
.itemTable {
    font-size: 12px !important;
}
.card-header {
    font-size: 12px !important;
}

.hide {
    display: none;
}

.accordion-button:not(.collapsed) {
    background-color: #ececec !important;
    color: black !important;
}
.accordion-button:focus {
    box-shadow: none;
}

select.form-control {
    background: url('/images/common/chevron-down.svg') no-repeat right 0.75rem center;
    background-size: 1rem;
    padding-right: 2rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.cycle-tab-container {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #e9eaeb;
}

.cycle-tab-container a {
    font-size: 14px;
    text-align: center;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
    margin-top: 15px;
    padding: 10px;
    padding-bottom: 0;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.fade.active {
    opacity: 1;
}

/* When active tab is shown, set opacity and display content */
.tab-pane.active {
    opacity: 1;
    display: block;
}
.cycle-tab-container .nav-tabs {
    display: flex;
    justify-content: space-between;
}

.cycle-tab-item {
    flex: 1; /* This makes each tab take equal space */
    text-align: center;
}

    .cycle-tab-item:after {
        display: block;
        content: '';
        border-bottom: solid 3px #0033A0;
        transform: scaleX(0);
        transition: transform 0ms ease-out;
    }
.cycle-tab-item.active:after {
    transform: scaleX(1);
    transform-origin:  0 50%;
}

    .nav-link:focus,
    .nav-link:hover,
    .cycle-tab-item.active a {
        border-color: transparent !important;
        color: #0033A0;
    }

.tab-content {
    height: 100%;
    margin-bottom: 15px !important;
}
.submitPanelBtn {
    display: none;
}
.nav-tabs .nav-link {
    color: black !important;
}

.alert {
    font-size: 14px;
}

.card {
    padding: 0;
    margin-bottom: 15px;
}

.p-lr-10 {
    padding-right: 10px;   
    padding-left: 10px;
}

.p-15 {
    padding: 15px;
}

.wysiwyg-editor .editor-statusbar {
    display: none !important;
}
.error-count-badge {
    font-weight: bold;
    color: red;
}

.sidebar-nav .nav-item-button .tooltip {
    display: inline-block;
    position: absolute;
    background-color: #313443;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 15px;
    border-radius: 3px;
    left: 75px;
    opacity: 0;
    visibility: hidden;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.sidebar-nav .nav-item-button .tooltip:before {
    content: "";
    display: block;
    position: absolute;
    left: -4px;
    top: 10px;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: inherit;
}

.sidebar-nav .nav-item-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.nav-item-button.active {
    background: #555555;
}

.scrollable-content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding-top: 32px; /* Height of breadcrumbs */
    padding-bottom: 60px; /* Height of footer */
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden; /* Prevent double scrollbars */
}

/* Set all sidebar and footer icons to #0033A0 */
.nav-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(99%) saturate(749%) hue-rotate(190deg) brightness(97%) contrast(104%);
    /* #0033A0 */
    transition: filter 0.2s, background 0.2s;
}

/* Active icon: gold color on blue background */
.nav-item-button.active {
    background: #0033A0 !important;
}

    .nav-item-button.active .nav-icon {
        filter: brightness(0) saturate(100%) invert(81%) sepia(61%) saturate(409%) hue-rotate(7deg) brightness(104%) contrast(104%);
        /* #FFD700 */
    }


.breadcrumb-item,
.breadcrumb-current,
.breadcrumb-item:link,
.breadcrumb-item:visited {
    color: #0033A0 !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

.breadcrumb-item:hover,
.breadcrumb-item:active {
    color: #0033A0 !important;
    text-decoration: underline; /* Optional: underline on hover, remove if not needed */
    font-weight: bold !important;
}

.submit-button {
    background-color: #0033A0 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

    .submit-button:hover,
    .submit-button:focus {
        background-color: #002070 !important; /* Slightly darker on hover/focus for feedback */
    }

.filter-modal-button {
    background-color: #0033A0 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

    .filter-modal-button:hover,
    .filter-modal-button:focus {
        background-color: #002070 !important; /* Slightly darker on hover/focus */
    }

/* Enable tooltip for nav-item-button in both sidebar-nav and footer-nav */
.sidebar-nav .nav-item-button .tooltip,
.footer-nav .nav-item-button .tooltip {
    display: inline-block;
    position: absolute;
    background-color: #313443;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding: 8px 15px;
    border-radius: 3px;
    left: 75px;
    opacity: 0;
    visibility: hidden;
    font-size: 12px;
    letter-spacing: 0.5px;
    z-index: 10;
}

    .sidebar-nav .nav-item-button .tooltip:before,
    .footer-nav .nav-item-button .tooltip:before {
        content: "";
        display: block;
        position: absolute;
        left: -4px;
        top: 10px;
        transform: rotate(45deg);
        width: 10px;
        height: 10px;
        background-color: inherit;
    }

.sidebar-nav .nav-item-button:hover .tooltip,
.footer-nav .nav-item-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}







