@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Pages/ApiReference/Pages/LiveUpdates.razor.rz.scp.css */
.loader[b-iq43e61ead] {
    width: 24px;
    height: 24px;
    background: black;
    display: inline-block;
    border-radius: 50%;
    box-sizing: border-box;
    animation: animloader-b-iq43e61ead 1s ease-in infinite;
}

@keyframes animloader-b-iq43e61ead {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.log-container[b-iq43e61ead] {
    background-color: #1e1e1e;
    color: #ffffff;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    border-radius: 5px;
    width: 100%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    height: 50vh;
}

.log-header[b-iq43e61ead],
.log-entry[b-iq43e61ead] {
    display: grid;
    grid-template-columns: 180px minmax(150px, calc(20%)) 100px 250px auto;
}

.log-header[b-iq43e61ead] {
    font-weight: bold;
    background-color: #333;
    padding: 10px;
    border-bottom: 2px solid #555;
}

.log-entry[b-iq43e61ead] {
    padding: 8px 10px;
    border-bottom: 1px solid #444;
    align-items: center;
}

.timestamp[b-iq43e61ead] {
    color: #bbb;
}

.status[b-iq43e61ead] {
    text-align: center;
    font-weight: bold;
    padding: 3px 3px;
    border-radius: 4px;
    margin-right:5px;
}

.success[b-iq43e61ead] {
    background-color: #4caf50;
    color: white;
}

.failure[b-iq43e61ead] {
    background-color: #f44336;
    color: white;
}

.event-name[b-iq43e61ead] {
    font-weight: bold;
    color: #90caf9;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.event-description[b-iq43e61ead] {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.log-container[b-iq43e61ead]::-webkit-scrollbar {
    width: 8px;
}

.log-container[b-iq43e61ead]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.log-container[b-iq43e61ead]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}
/* /Pages/Countries/CountryCalendar/CountryCalendar.razor.rz.scp.css */
.year-calendar[b-paf6prhqc2] {
    display: block;
    background: #F7F7FB;
    border: 3px solid #F3B82F;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    overflow-y: hidden;
    transition: border-color 0.2s;
}

/* Edit mode: turn the calendar border green to signal the calendar is editable. */
.edit-mode-active .year-calendar[b-paf6prhqc2],
.edit-mode-active .month-calendar[b-paf6prhqc2] {
    border-color: #28a745;
}

/* Delete confirmation modal */
.delete-confirm-modal[b-paf6prhqc2] {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22);
    width: 100%;
    max-width: 380px;
    padding: 40px 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: modalSlideIn-b-paf6prhqc2 0.2s ease;
}

.delete-confirm-icon[b-paf6prhqc2] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--remundo-primary-color, #2c4154);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

    .delete-confirm-icon i[b-paf6prhqc2] {
        font-size: 1.7rem;
        color: #fff;
    }

.delete-confirm-title[b-paf6prhqc2] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c4154;
    margin: 0 0 14px;
}

.delete-confirm-message[b-paf6prhqc2] {
    font-size: 0.92rem;
    color: #666;
    margin: 0 0 32px;
    line-height: 1.6;
}

.delete-confirm-button[b-paf6prhqc2] {
    width: 60%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background-color: var(--remundo-primary-color, #2c4154);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    transition: background-color 0.2s;
    position: relative;
    z-index: 1;
}

    .delete-confirm-button:hover[b-paf6prhqc2] {
        background-color: color-mix(in srgb, var(--remundo-primary-color, #2c4154), black 15%);
    }

.delete-confirm-cancel[b-paf6prhqc2] {
    background: none;
    border: none;
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

    .delete-confirm-cancel:hover[b-paf6prhqc2] {
        color: #222;
    }

.month-calendar[b-paf6prhqc2] {
    display: none;
}

@media (max-width: 1024px) {
    .year-calendar[b-paf6prhqc2] {
        display: none !important;
    }

    .month-calendar[b-paf6prhqc2] {
        display: block !important;
    }
}

.calendar-header-row[b-paf6prhqc2] {
    display: grid;
    grid-template-columns: 120px 1fr;
    background-color: #F7F7FB;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.month-label-spacer[b-paf6prhqc2] {
 width: 30px;
    height: 100%;
 display: inline-block;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0 8px;
}

.calendar-navigation[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-chevron[b-paf6prhqc2] {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 1.2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-chevron:hover[b-paf6prhqc2] {
        color: var(--remundo-primary-color);
 }

.calendar-title[b-paf6prhqc2] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    min-width: 60px;
    text-align: center;
}

    .calendar-title.current-year[b-paf6prhqc2] {
        color: var(--remundo-primary-color);
    }

.header-weekdays[b-paf6prhqc2] {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    padding: 2px 8px;
align-items: center;
}

.header-weekday[b-paf6prhqc2] {
    width: 35px;
    flex-shrink: 0;
    text-align: center;
    font-size: 1rem;
  font-weight: 700;
    color: var(--remundo-primary-color);
}

.calendar-month-row[b-paf6prhqc2] {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-bottom: 1px solid var(--remundo-secondary-color-light);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

    .calendar-month-row:last-child[b-paf6prhqc2] {
        border-bottom: none;
    }

.month-label[b-paf6prhqc2] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--remundo-primary-color);
    background-color: var(--remundo-secondary-color-light);
    position: relative;
}

    .month-label span[b-paf6prhqc2] {
        display: inline-block;
        text-align: center;
    }

    .month-label[b-paf6prhqc2]::after {
        content: '';
        position: absolute;
        bottom: 0;
 left: 50%;
        transform: translateX(-50%);
      width: 80px;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.2);
    }

.month-days-container[b-paf6prhqc2] {
    display: flex;
    flex-direction: column;
    padding: 2px 8px;
    background-color: #F7F7FB;
}

.month-days-grid[b-paf6prhqc2] {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
}

.calendar-day-card[b-paf6prhqc2] {
    background-color: #F7F7F7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
  height: 60px;
    width: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

    .calendar-day-card.empty[b-paf6prhqc2] {
        background-color: transparent;
    border: none;
        cursor: default;
        pointer-events: none;
    }

    .calendar-day-card.weekend[b-paf6prhqc2] {
background-color: #DEE6EE;
    }

    .calendar-day-card .day-content[b-paf6prhqc2] {
        display: flex;
        flex-direction: column;
    align-items: center;
        justify-content: flex-end;
    height: 100%;
        width: 100%;
  padding: 4px 2px;
    }

.day-icon-area[b-paf6prhqc2] {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
}

    .day-icon-area i[b-paf6prhqc2] {
        font-size: 0.85rem;
    }

.day-number-area[b-paf6prhqc2] {
 display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: auto;
}

.day-number[b-paf6prhqc2] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--remundo-primary-color);
    line-height: 1;
}

.day-number-light[b-paf6prhqc2] {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.today-arrow[b-paf6prhqc2] {
    font-size: 0.6rem;
    color: #000;
    line-height: 1;
}

.calendar-day-card.today[b-paf6prhqc2] {
    border: 2px solid #000;
  font-weight: bold;
    position: relative;
    z-index: 1;
}

.calendar-day-card.selected[b-paf6prhqc2] {
    border-color: var(--remundo-primary-color);
    box-shadow: 0 0 0 2px var(--remundo-primary-color);
}

.calendar-day-card.has-event[b-paf6prhqc2] {
    border-color: transparent;
}

.calendar-details[b-paf6prhqc2] {
    animation: slideDown-b-paf6prhqc2 0.3s ease;
    max-width: 500px;
}

    .calendar-details .card[b-paf6prhqc2] {
        border: 2px solid var(--remundo-primary-color);
      border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.selected-day-header[b-paf6prhqc2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

    .selected-day-header .card-title[b-paf6prhqc2] {
    color: var(--remundo-primary-color);
        font-weight: 600;
        font-size: 1.1rem;
    }

.day-info-section[b-paf6prhqc2] {
    padding: 8px 0;
}

.info-table[b-paf6prhqc2] {
    width: 100%;
    border-collapse: collapse;
}

    .info-table td[b-paf6prhqc2] {
        padding: 6px 0;
        vertical-align: top;
    }

    .info-table .info-label[b-paf6prhqc2] {
    font-weight: 600;
        color: #555;
  width: 100px;
        padding-right: 16px;
    }

    .info-table .info-value[b-paf6prhqc2] {
     color: #333;
 display: flex;
        align-items: center;
        gap: 8px;
    }

.calendar-day-card.overflow[b-paf6prhqc2] {
    border: none !important;
    color: #b0b0b0 !important;
  background: #f7f7f7 !important;
    cursor: default !important;
    pointer-events: none !important;
}

    .calendar-day-card.overflow .day-number[b-paf6prhqc2] {
    color: #b0b0b0 !important;
   font-weight: normal;
    }

.country-calendar-container[b-paf6prhqc2] {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    max-width: 1700px;
    padding-bottom: 50px;
}

.calendar-colours[b-paf6prhqc2] {
  --weekend-bg: #dee6ee;
    --public-holiday-bg: #b8d4e3;
    --pending-holiday-bg: #e8a735;
}

/* Pending (unsaved) custom public holiday — mirrors the public-holiday card but orange */
.calendar-day-card.pending[b-paf6prhqc2] {
    border-color: transparent;
}

.pending-holiday-icon[b-paf6prhqc2] {
    color: #fff;
}

.calendar-key-container[b-paf6prhqc2] {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.calendar-toolbar[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.calendar-toolbar-left[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-toolbar-right[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Add New Holiday button */
.add-holiday-button[b-paf6prhqc2] {
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    background-color: var(--remundo-primary-color, #2c4154);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

    .add-holiday-button:hover[b-paf6prhqc2] {
        background-color: color-mix(in srgb, var(--remundo-primary-color, #2c4154), black 15%);
    }

/* Ready toggle */
.ready-toggle[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ready-label[b-paf6prhqc2] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

/* Segmented pill switch (e.g. Custom | API view) */
.view-pill[b-paf6prhqc2] {
    display: inline-flex;
    align-items: center;
    padding: 2px;
    border-radius: 999px;
    background-color: var(--remundo-secondary-color-light, #eef1f4);
    border: 1px solid var(--remundo-secondary-color-light, #dfe4ea);
}

.view-pill-option[b-paf6prhqc2] {
    border: none;
    background: none;
    cursor: pointer;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #667;
    transition: background-color 0.15s, color 0.15s;
    line-height: 1.2;
}

    .view-pill-option:hover:not(.active)[b-paf6prhqc2] {
        color: var(--remundo-primary-color, #2c4154);
    }

    .view-pill-option.active[b-paf6prhqc2] {
        background-color: var(--remundo-primary-color, #2c4154);
        color: #fff;
    }

.ready-switch[b-paf6prhqc2] {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s;
}

.ready-switch-track[b-paf6prhqc2] {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    position: relative;
}

.ready-switch-thumb[b-paf6prhqc2] {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: left 0.2s;
}

.ready-switch.ready-off[b-paf6prhqc2] {
    background-color: #ccc;
}

    .ready-switch.ready-off .ready-switch-thumb[b-paf6prhqc2] {
        left: 3px;
    }

.ready-switch.ready-on[b-paf6prhqc2] {
    background-color: #28a745;
}

    .ready-switch.ready-on .ready-switch-thumb[b-paf6prhqc2] {
        left: 23px;
    }

/* Region switch gated off until the country's "Calendar Ready" toggle is on. */
.ready-switch.ready-disabled[b-paf6prhqc2] {
    opacity: 0.4;
    cursor: default;
}

/* Edit Mode toggle */
.edit-mode-container[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.edit-mode-label[b-paf6prhqc2] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.edit-mode-switch[b-paf6prhqc2] {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 44px;
    height: 24px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s;
}

.edit-mode-switch-track[b-paf6prhqc2] {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    position: relative;
}

.edit-mode-switch-thumb[b-paf6prhqc2] {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: left 0.2s;
}

.edit-mode-switch.edit-mode-off[b-paf6prhqc2] {
    background-color: #ccc;
}

    .edit-mode-switch.edit-mode-off .edit-mode-switch-thumb[b-paf6prhqc2] {
        left: 3px;
    }

.edit-mode-switch.edit-mode-on[b-paf6prhqc2] {
    background-color: #28a745;
}

    .edit-mode-switch.edit-mode-on .edit-mode-switch-thumb[b-paf6prhqc2] {
        left: 23px;
    }

/* Proceed button */
.proceed-button[b-paf6prhqc2] {
    padding: 8px 22px;
    border: none;
    border-radius: 6px;
    background-color: var(--remundo-primary-color, #2c4154);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s, opacity 0.2s;
}

    .proceed-button:hover:not(:disabled)[b-paf6prhqc2] {
        background-color: color-mix(in srgb, var(--remundo-primary-color, #2c4154), black 15%);
    }

    .proceed-button:disabled[b-paf6prhqc2] {
        background-color: #ccc;
        color: #888;
        cursor: default;
    }

.calendar-key-button[b-paf6prhqc2] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
padding: 6px 14px;
    border: 2px solid #F3B82F;
    border-radius: 6px;
    background-color: #F7F7FB;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--remundo-primary-color);
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .calendar-key-button:hover[b-paf6prhqc2] {
        background-color: #eeeef5;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

.calendar-key-label[b-paf6prhqc2] {
    font-weight: 700;
}

.calendar-key-icon[b-paf6prhqc2] {
    font-size: 1rem;
    color: var(--remundo-primary-color);
}

.calendar-key-popup[b-paf6prhqc2] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    margin-top: 4px;
    min-width: 280px;
    max-width: 320px;
    background: white;
 border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    animation: keyPopupFadeIn-b-paf6prhqc2 0.2s ease;
}

@keyframes keyPopupFadeIn-b-paf6prhqc2 {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-key-popup-header[b-paf6prhqc2] {
    padding: 12px 16px 8px;
    font-size: 1rem;
    color: var(--remundo-primary-color);
    border-bottom: 2px solid #d0d0d0;
}

.calendar-key-popup-body[b-paf6prhqc2] {
    padding: 12px 16px 16px;
}

.key-section[b-paf6prhqc2] {
    margin-bottom: 4px;
}

.key-item[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    font-size: 0.85rem;
    color: #333;
}

.key-item-icon[b-paf6prhqc2] {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
}

.key-item-icon-spacer[b-paf6prhqc2] {
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
    display: inline-block;
}

.key-swatch[b-paf6prhqc2] {
  width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-left: auto;
}

@keyframes slideDown-b-paf6prhqc2 {
from {
        opacity: 0;
    transform: translateY(-10px);
    }

    to {
     opacity: 1;
 transform: translateY(0);
    }
}

/* Month Calendar View (Mobile) */
.month-calendar[b-paf6prhqc2] {
    background: #F7F7FB;
    border: 3px solid #F3B82F;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.month-calendar-header[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
padding-bottom: 15px;
    border-bottom: 2px solid #F3B82F;
}

.month-calendar-title[b-paf6prhqc2] {
    display: flex;
    flex-direction: column;
  align-items: center;
    gap: 5px;
}

.month-name[b-paf6prhqc2] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--remundo-primary-color);
}

.year-name[b-paf6prhqc2] {
  font-size: 1.2rem;
    font-weight: 600;
 color: #555;
}

.month-calendar-weekdays[b-paf6prhqc2] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
  justify-items: center;
}

.month-weekday[b-paf6prhqc2] {
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
  color: var(--remundo-primary-color);
    padding: 10px 0 14px 0;
    margin-bottom: 2px;
}

    .month-weekday[b-paf6prhqc2]::after {
        content: '';
        display: block;
        width: 48px;
        height: 2px;
      background: #d1d1d1;
        margin: 6px auto 0 auto;
        border-radius: 1px;
    }

.month-calendar-grid[b-paf6prhqc2] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    justify-items: center;
}

    .month-calendar-grid .calendar-day-card[b-paf6prhqc2] {
        width: 100%;
        max-width: 60px;
   height: 60px;
    }

/* Calendar loading state */
.calendar-loading[b-paf6prhqc2] {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

/* Day detail popup */
.day-detail-popup[b-paf6prhqc2] {
    position: absolute;
    z-index: 500;
    background: #ffffff;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.75rem;
    box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.18);
    min-width: 13.75rem;
    max-width: 17.5rem;
    padding: 1rem;
    animation: popupFadeIn-b-paf6prhqc2 0.15s ease;
    pointer-events: auto;
}

@keyframes popupFadeIn-b-paf6prhqc2 {
    from {
        opacity: 0;
        transform: translateY(0.375rem) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.day-detail-popup-header[b-paf6prhqc2] {
    font-size: 1rem;
    font-weight: 700;
    color: #2c4154;
    margin-bottom: 0.25rem;
}

.day-detail-popup-event[b-paf6prhqc2] {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.day-detail-event-title[b-paf6prhqc2] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.day-detail-public-holiday[b-paf6prhqc2] {
    color: var(--remundo-primary-color, #d32f2f);
}

.day-detail-weekend[b-paf6prhqc2] {
    color: #4a6580;
}

.day-detail-working-day[b-paf6prhqc2] {
    color: #555;
}

.day-detail-popup-row[b-paf6prhqc2] {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0.25rem;
}

.day-detail-popup-label[b-paf6prhqc2] {
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

.day-detail-popup-description[b-paf6prhqc2] {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: #555;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-word;
}

.calendar-loading-overlay[b-paf6prhqc2] {
position: absolute;
    top: 50%;
    left: 50%;
transform: translate(-50%, -50%);
    z-index: 20;
  background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .calendar-header-row[b-paf6prhqc2] {
        grid-template-columns: 100px 1fr;
    }

    .calendar-month-row[b-paf6prhqc2] {
     grid-template-columns: 100px 1fr;
    }

    .month-label[b-paf6prhqc2] {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .calendar-header-row[b-paf6prhqc2] {
        grid-template-columns: 80px 1fr;
    }

    .calendar-month-row[b-paf6prhqc2] {
        grid-template-columns: 80px 1fr;
    }

    .calendar-day-card[b-paf6prhqc2] {
        height: 50px;
    width: 30px;
    }

    .header-weekday[b-paf6prhqc2] {
        width: 30px;
        font-size: 0.9rem;
    }

    .day-number[b-paf6prhqc2] {
        font-size: 0.85rem;
    }

    .calendar-title[b-paf6prhqc2] {
        font-size: 1rem;
min-width: 50px;
    }

  .calendar-navigation[b-paf6prhqc2] {
        gap: 5px;
    }

    .month-label[b-paf6prhqc2] {
        padding: 8px;
font-size: 0.85rem;
    }

    .month-days-container[b-paf6prhqc2] {
        padding: 5px;
    }

    .month-days-grid[b-paf6prhqc2] {
   gap: 1px;
    }

    .header-weekdays[b-paf6prhqc2] {
        gap: 1px;
    }

    .month-calendar[b-paf6prhqc2] {
        padding: 15px;
    }

    .month-name[b-paf6prhqc2] {
        font-size: 1.4rem;
    }

    .year-name[b-paf6prhqc2] {
  font-size: 1rem;
    }

    .month-weekday[b-paf6prhqc2] {
 font-size: 0.85rem;
   padding: 8px 0;
    }

    .month-calendar-grid .calendar-day-card[b-paf6prhqc2] {
height: 50px;
    }
}

/* Region selector */
.region-selector-container[b-paf6prhqc2] {
    position: relative;
}

.region-selector-button[b-paf6prhqc2] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-width: 7rem;
    justify-content: space-between;
}

    .region-selector-button:hover[b-paf6prhqc2] {
        border-color: var(--remundo-primary-color);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

.region-selector-label[b-paf6prhqc2] {
    font-weight: 600;
    color: #888;
}

.region-dropdown[b-paf6prhqc2] {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    margin-top: 4px;
    min-width: 15.625rem;
    max-width: 17.5rem;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    animation: keyPopupFadeIn-b-paf6prhqc2 0.2s ease;
    padding: 6px 0;
}

/* Search box pinned at the top of the region dropdown */
.region-dropdown-search[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 10px 6px;
    padding: 5px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fafafa;
}

    .region-dropdown-search:focus-within[b-paf6prhqc2] {
        border-color: var(--remundo-primary-color);
        background: #fff;
    }

.region-dropdown-search-icon[b-paf6prhqc2] {
    font-size: 0.85rem;
    color: #999;
    flex-shrink: 0;
}

.region-dropdown-search-input[b-paf6prhqc2] {
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    color: #333;
    width: 100%;
    min-width: 0;
}

.region-dropdown-search-clear[b-paf6prhqc2] {
    border: none;
    background: none;
    cursor: pointer;
    color: #999;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
    flex-shrink: 0;
}

    .region-dropdown-search-clear:hover[b-paf6prhqc2] {
        color: #555;
    }

/* Scrollable list of region rows */
.region-dropdown-list[b-paf6prhqc2] {
    max-height: 16rem;
    overflow-y: auto;
}

.region-dropdown-empty[b-paf6prhqc2] {
    padding: 12px 16px;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

.region-dropdown-item[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: background-color 0.15s;
}

    .region-dropdown-item:hover[b-paf6prhqc2] {
        background-color: #f5f5f5;
    }

/* Status rows: only the switch is interactive, not the row itself. */
.region-dropdown-item-static[b-paf6prhqc2] {
    cursor: default;
}

    .region-dropdown-item-static:hover[b-paf6prhqc2] {
        background-color: transparent;
    }

.region-colour-bar[b-paf6prhqc2] {
    width: 20px;
    height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}

.region-name[b-paf6prhqc2] {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 500;
}

.region-name-country[b-paf6prhqc2] {
    font-weight: 700;
}

.region-check[b-paf6prhqc2] {
    font-size: 1.1rem;
    flex-shrink: 0;
}

    /* Checked = shown on the calendar (primary); empty box = hidden (muted). */
    .region-check.bi-check-square-fill[b-paf6prhqc2] {
        color: var(--remundo-primary-color);
    }

    .region-check.bi-square[b-paf6prhqc2] {
        color: #bbb;
    }

/* Holiday modal */
.holiday-modal-overlay[b-paf6prhqc2] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalOverlayFadeIn-b-paf6prhqc2 0.15s ease;
}

@keyframes modalOverlayFadeIn-b-paf6prhqc2 {
    from { opacity: 0; }
    to { opacity: 1; }
}

.holiday-modal[b-paf6prhqc2] {
    background: #f9fafb;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 28px 24px;
    animation: modalSlideIn-b-paf6prhqc2 0.2s ease;
}

@keyframes modalSlideIn-b-paf6prhqc2 {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.holiday-modal-icon[b-paf6prhqc2] {
    text-align: center;
    margin-bottom: 12px;
}

    .holiday-modal-icon i[b-paf6prhqc2] {
        font-size: 2.5rem;
        color: var(--remundo-primary-color, #2c4154);
    }

.holiday-modal-title[b-paf6prhqc2] {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c4154;
    margin: 0 0 8px;
}

.holiday-modal-subtitle[b-paf6prhqc2] {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin: 0 0 24px;
    line-height: 1.5;
}

.holiday-modal-form[b-paf6prhqc2] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.holiday-field[b-paf6prhqc2] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.holiday-field-label[b-paf6prhqc2] {
    font-size: 0.8rem;
    font-weight: 700;
    color: #2c4154;
}

.holiday-field-input[b-paf6prhqc2] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

    .holiday-field-input:focus[b-paf6prhqc2] {
        border-color: var(--remundo-primary-color, #2c4154);
    }

    .holiday-field-input[b-paf6prhqc2]::placeholder {
        color: #bbb;
    }

select.holiday-field-input[b-paf6prhqc2] {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.holiday-field-row[b-paf6prhqc2] {
    display: flex;
    gap: 12px;
}

.holiday-field-half[b-paf6prhqc2] {
    flex: 1;
    min-width: 0;
}

.holiday-textarea-wrapper[b-paf6prhqc2] {
    position: relative;
}

.holiday-field-textarea[b-paf6prhqc2] {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
    background: #fff;
    outline: none;
    resize: vertical;
    min-height: 100px;
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
}

    .holiday-field-textarea:focus[b-paf6prhqc2] {
        border-color: var(--remundo-primary-color, #2c4154);
    }

    .holiday-field-textarea[b-paf6prhqc2]::placeholder {
        color: #bbb;
    }

.holiday-char-count[b-paf6prhqc2] {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.75rem;
    color: #aaa;
    pointer-events: none;
}

.holiday-modal-actions[b-paf6prhqc2] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.holiday-modal-actions-edit[b-paf6prhqc2] {
    justify-content: space-between;
}

.holiday-modal-actions-right[b-paf6prhqc2] {
    display: flex;
    gap: 12px;
}

.holiday-delete-button[b-paf6prhqc2] {
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

    .holiday-delete-button:hover[b-paf6prhqc2] {
        background-color: #fff0f0;
        border-color: #d9534f;
        color: #d9534f;
    }

.holiday-cancel-button[b-paf6prhqc2] {
    padding: 10px 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color: #555;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .holiday-cancel-button:hover[b-paf6prhqc2] {
        background-color: #f5f5f5;
    }

    .holiday-submit-button[b-paf6prhqc2] {
        padding: 10px 28px;
        border: none;
        border-radius: 6px;
        background-color: var(--remundo-primary-color, #2c4154);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s, opacity 0.2s;
    }

    .holiday-submit-button:hover:not(:disabled)[b-paf6prhqc2] {
        background-color: color-mix(in srgb, var(--remundo-primary-color, #2c4154), black 15%);
    }

    .holiday-submit-button:disabled[b-paf6prhqc2] {
        background-color: #ccc;
        color: #888;
        cursor: default;
    }

/* Save confirmation modal — list of pending holidays */
.save-confirm-list[b-paf6prhqc2] {
    margin: 4px 0 20px;
    max-height: 260px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.save-confirm-item[b-paf6prhqc2] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.85rem;
}

    .save-confirm-item:last-child[b-paf6prhqc2] {
        border-bottom: none;
    }

.save-confirm-item-date[b-paf6prhqc2] {
    flex: 0 0 90px;
    font-weight: 600;
    color: var(--remundo-primary-color, #2c4154);
}

.save-confirm-item-name[b-paf6prhqc2] {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.save-confirm-item-region[b-paf6prhqc2] {
    flex: 0 0 auto;
    color: #777;
    font-size: 0.78rem;
}

.save-confirm-empty[b-paf6prhqc2] {
    padding: 16px;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* Change legend above the list */
.save-confirm-legend[b-paf6prhqc2] {
    display: flex;
    gap: 16px;
    margin: 0 0 8px;
    font-size: 0.75rem;
    color: #666;
}

.save-confirm-legend-item[b-paf6prhqc2] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.save-change-swatch[b-paf6prhqc2] {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Per-change-type colouring: green added, amber edited, red removed */
.save-change-badge[b-paf6prhqc2] {
    flex: 0 0 64px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 2px 6px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
}

.save-confirm-item.save-change-added[b-paf6prhqc2] {
    border-left: 3px solid #28a745;
}

.save-confirm-item.save-change-edited[b-paf6prhqc2] {
    border-left: 3px solid #e8a735;
}

.save-confirm-item.save-change-removed[b-paf6prhqc2] {
    border-left: 3px solid #d9534f;
}

    .save-confirm-item.save-change-removed .save-confirm-item-name[b-paf6prhqc2] {
        text-decoration: line-through;
        color: #999;
    }

.save-change-badge.save-change-added[b-paf6prhqc2],
.save-change-swatch.save-change-added[b-paf6prhqc2] {
    background-color: #28a745;
}

.save-change-badge.save-change-edited[b-paf6prhqc2],
.save-change-swatch.save-change-edited[b-paf6prhqc2] {
    background-color: #e8a735;
}

.save-change-badge.save-change-removed[b-paf6prhqc2],
.save-change-swatch.save-change-removed[b-paf6prhqc2] {
    background-color: #d9534f;
}
/* /Pages/Countries/CountryTimeAndDeliverables.razor.rz.scp.css */
[b-gl1a7o70mg] .rz-radiobutton-label {
    margin-left: 0.5rem !important;
    margin-right: 1rem !important;
}
}

.settings-sub-heading[b-gl1a7o70mg] {
    margin-top: 1rem;
}
/* /Pages/Insurances/Form/InsuranceTemplateForm.razor.rz.scp.css */

.footer[b-beo2riejc5] {
    background-color: white;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid var(--remundo-primary-color);
    display:flex;
    justify-content: space-between;
    padding: 0.5rem;
}

@media (min-width: 1161px) {

    .form-container[b-beo2riejc5] {
        max-width: 50rem;
        min-width: 50rem;
    }
}

@media (max-width: 1160px) {
    .form-container[b-beo2riejc5] {
        max-width: 50rem;
        min-width: 50rem;
    }
}
/* /Pages/Insurances/View/InsuranceTemplateView.razor.rz.scp.css */
@media (min-width: 1161px) {

    .form-card[b-bqnwyjcycw] {
        max-width: 50rem;
        min-width: 50rem;
    }
}

@media (max-width: 1160px) {

    .form-card[b-bqnwyjcycw] {
        max-width: 40.625rem;
        min-width: 40.625rem;
    }
}
/* /Pages/Invoicing/InvoicedExpensesBreakdown.razor.rz.scp.css */
.expense-breakdown-table thead th[b-hg1pzx932q] {
    background-color: #e9ecef;
}

.expense-breakdown-table tbody td[b-hg1pzx932q] {
    background-color: #fff;
}

.expense-item-sum-header[b-hg1pzx932q] {
    font-weight: lighter;
}
/* /Pages/Invoicing/InvoiceReportDetails.razor.rz.scp.css */
th[b-zw0m8gp4xq] {
    color: #6c757d !important;
}

td[b-zw0m8gp4xq] {
    color: var(--remundo-primary-color) !important;
}

.total-amount-section[b-zw0m8gp4xq] {
    background-color: #e8edf3;
    font-weight: bold;
    padding-top: 0.5rem;
    border-radius: 0.2rem;
    margin: 0.1rem;
}

.approve-button[b-zw0m8gp4xq] {
    background-color: #34c38f !important;
}

.reject-button[b-zw0m8gp4xq] {
    background-color: #bd1f37 !important;
}

.equal-width-table[b-zw0m8gp4xq] {
    table-layout: fixed;
    width: 100%;
}

.equal-width-table th[b-zw0m8gp4xq],
.equal-width-table td[b-zw0m8gp4xq] {
    width: 25%;
    word-break: break-word;
}

.invoice-file-preview-button[b-zw0m8gp4xq] {
    display: block;
    width: 50%;
    margin: auto;
    padding: 0.2rem;
    background: none !important;
    border: 2px solid #c3c3c3;
}

.pdf-icon[b-zw0m8gp4xq] {
    width: 30%; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.negative-amount-row[b-zw0m8gp4xq],
tr.negative-amount-row > td[b-zw0m8gp4xq],
tr.negative-amount-row > th[b-zw0m8gp4xq] {
    background-color: #FFCECE !important;
}

@media (min-width: 1593px){
    .card[b-zw0m8gp4xq], .buttons-container[b-zw0m8gp4xq], .invoice-header-container[b-zw0m8gp4xq] {
        width: 90rem;
        margin: auto;
    }
}
/* /Pages/Invoicing/InvoiceReportsTable.razor.rz.scp.css */

.file-link-table[b-xtl4yq63ta] {
    color: #35A0D7;
}

.file-link-table:hover[b-xtl4yq63ta] {
    color: white;
}

.file-link-disabled[b-xtl4yq63ta] {
    color: #999;
    cursor: not-allowed;
}

@media (min-width: 1593px) {
    .invoice-header-container[b-xtl4yq63ta] {
        width: 90rem;
        margin: auto;
    }
}
/* /Pages/Invoicing/InvoiceSentinel.razor.rz.scp.css */
.sentinel-card[b-aojmlq1hnt] {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.sentinel-header[b-aojmlq1hnt] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    color: #fff;
}

.sentinel-match-green[b-aojmlq1hnt] {
    background-color: #2e7d32;
}

.sentinel-match-yellow[b-aojmlq1hnt] {
    background-color: #f9a825;
    color: #333;
}

.sentinel-match-red[b-aojmlq1hnt] {
    background-color: #c62828;
}

.sentinel-match-status[b-aojmlq1hnt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sentinel-match-icon[b-aojmlq1hnt] {
    font-size: 1.75rem;
    font-weight: bold;
}

.sentinel-match-label[b-aojmlq1hnt] {
    font-size: 1.5rem;
    font-weight: 600;
}

.sentinel-confidence[b-aojmlq1hnt] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sentinel-scores[b-aojmlq1hnt] {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.sentinel-confidence-label[b-aojmlq1hnt] {
    font-size: 0.8rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sentinel-confidence-value[b-aojmlq1hnt] {
    font-size: 1.75rem;
    font-weight: 700;
}

.sentinel-summary[b-aojmlq1hnt] {
    padding: 1rem 1.5rem;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
    color: #444;
}

.sentinel-section-title[b-aojmlq1hnt] {
    padding: 0.75rem 1.5rem 0;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.sentinel-table[b-aojmlq1hnt] {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0 0 0;
}

.sentinel-table thead th[b-aojmlq1hnt] {
    text-align: left;
    padding: 0.6rem 1rem;
    background-color: #f5f5f5;
    border-bottom: 2px solid #ddd;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #555;
}

.sentinel-table tbody td[b-aojmlq1hnt] {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    vertical-align: top;
}

.sentinel-table tbody tr:last-child td[b-aojmlq1hnt] {
    border-bottom: none;
}

.sentinel-table tbody tr:hover[b-aojmlq1hnt] {
    background-color: #f9f9f9;
}

.sentinel-severity-badge[b-aojmlq1hnt] {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.severity-critical[b-aojmlq1hnt] {
    background-color: #c62828;
    color: #fff;
}

.severity-high[b-aojmlq1hnt] {
    background-color: #e65100;
    color: #fff;
}

.severity-medium[b-aojmlq1hnt] {
    background-color: #f9a825;
    color: #333;
}

.severity-low[b-aojmlq1hnt] {
    background-color: #66bb6a;
    color: #fff;
}
/* /Pages/Organisations/View/Members.razor.rz.scp.css */
.mfa-reset-requested[b-imuga23cap] {
    color: #bd1f37;
    font-weight: 600;
}

.mfa-status-active[b-imuga23cap] {
    color: #2A4155;
    font-weight: 500;
}

.mfa-status-inactive[b-imuga23cap] {
    color: #6c757d;
    font-weight: 500;
}

.mfa-method-badge[b-imuga23cap] {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 400;
}

.mfa-btn-approve[b-imuga23cap] {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.mfa-btn-approve:hover[b-imuga23cap] {
    background-color: #218838;
    color: white;
}

.mfa-btn-reject[b-imuga23cap] {
    background-color: #bd1f37;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.25rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.mfa-btn-reject:hover[b-imuga23cap] {
    background-color: #a11a2f;
    color: white;
}

.mfa-tooltip-container[b-imuga23cap] {
    min-width: 12rem;
    padding: 0.5rem;
}

.mfa-history-table[b-imuga23cap] {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
}

.mfa-history-table th[b-imuga23cap] {
    font-weight: 600;
    border-bottom: 1px solid #dee2e6;
    padding: 0.25rem 0.5rem;
    text-align: left;
}

.mfa-history-table td[b-imuga23cap] {
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid #f0f0f0;
}
/* /Pages/Organisations/View/WorkersAvailability/Stepper.razor.rz.scp.css */
.stepper-root button[b-wjw26brvi0] {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

.step-backwards-timesheet:disabled[b-wjw26brvi0] {
    fill: var(--remundo-secondary-color);
}

.step-backwards-timesheet[b-wjw26brvi0] {
    fill: var(--remundo-primary-color);
}

.step-forwards-timesheet[b-wjw26brvi0] {
    fill: var(--remundo-primary-color) !important;
}

.chevron.left[b-wjw26brvi0] {
    transform: scale(-1, 1);
    transform-origin: center;
}
/* /Pages/Organisations/View/WorkersAvailability/WorkerAvailabilityCalendar.razor.rz.scp.css */
.outer-container[b-w2avg6of2h] {
  max-width: fit-content;
}

.calendar-table[b-w2avg6of2h] {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  --first-col-width: 15.625rem;
}

.gap-row[b-w2avg6of2h] {
  height: 8px;
}

.gap-row th[b-w2avg6of2h],
.gap-row td[b-w2avg6of2h] {
  padding: 0;
  height: 8px;
  position: sticky;
  top: 2.75rem;
}

.gap-row .first-col[b-w2avg6of2h] {
  border-right: none;
  left: 0;
}

th[b-w2avg6of2h],
td[b-w2avg6of2h] {
  padding: 0;
  margin: 0;
}

th[b-w2avg6of2h] {
  font-weight: 600;
  height: 2.75rem;
  border-right: 1px solid var(--availability-border);
  border-bottom: 1px solid var(--availability-border);
}

.header-row th[b-w2avg6of2h] {
  position: sticky;
  top: 0;
  z-index: 3;
  background: var(--availability-bg);
}

.header-row .first-col[b-w2avg6of2h] {
  z-index: 4;
  background: var(--availability-bg);
}

.first-col[b-w2avg6of2h] {
  border-top: none;
  border-bottom: none;
  width: var(--first-col-width);
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--availability-bg);
}

col.first-col-width[b-w2avg6of2h] {
  width: var(--first-col-width);
  min-width: var(--first-col-width);
}

col.day-col-width[b-w2avg6of2h] {
  min-width: 2.25rem;
}

.day-header[b-w2avg6of2h] {
  min-width: 2.25rem;
  border-top: 1px solid var(--availability-border);
}

.day-text[b-w2avg6of2h] {
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.day-number[b-w2avg6of2h] {
  font-size: 13px;
  color: var(--remundo-primary-color);
  margin-top: 2px;
}

.worker-cell[b-w2avg6of2h] {
  padding: 0.625rem;
  position: sticky;
  border-right: 1px solid var(--availability-border);
}

.worker-cell:not(.last)[b-w2avg6of2h]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.625rem;
  right: 0.625rem;
  height: 1px;
  background: var(--availability-border);
}

.worker-card[b-w2avg6of2h] {
  gap: 0.625rem;
  min-width: 0;
}

.meta[b-w2avg6of2h] {
  min-width: 0;
}

.sub[b-w2avg6of2h] {
  margin-top: 2px;
  font-size: 12px;
  min-width: 0;
  white-space: nowrap;
}

.day-cell[b-w2avg6of2h] {
  border-right: 1px solid var(--availability-border);
  border-bottom: 1px solid var(--availability-border);
  background: var(--availability-cell-bg);
  height: 3.375rem;
  overflow: visible;
}

.day-cell[b-w2avg6of2h] >  div {
  display: block;
  width: 100%;
  height: 100%;
}

.day-cell.no-border-right[b-w2avg6of2h] {
  border-right: none;
}

.day-cell.weekend[b-w2avg6of2h] {
  background: var(--weekend-bg);
}

.day-cell.first-row[b-w2avg6of2h] {
  border-top: 1px solid var(--availability-border);
}

.calendar-table[b-w2avg6of2h] {
  position: relative;
}

.calendar-colours[b-w2avg6of2h] {
  --weekend-bg: #dee6ee;
  --public-holiday-bg: #b8d4e3;
  --annual-leave-bg: #9796f2;
  --medical-leave-bg: #c899a2;
  --unpaid-leave-bg: #f5c6aa;
  --bonus-day-bg: #a5d6a7;
  --special-event-bg: inherit;
  --special-event-border: #2f93b1;
  --rejected-border: #bd1f37;
  --pending-border: #f1ad0e;
  --availability-today-accent: red;
}

.calendar-table.current-month[b-w2avg6of2h]::after {
  content: '';
  position: absolute;
  top: 3.25rem;
  bottom: 0;
  left: calc(
          var(--first-col-width) + ((100% - var(--first-col-width)) / var(--day-count)) *
          (var(--today-index) + 0.5)
  );
  width: 2px;
  background: var(--availability-today-accent);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.calendar-table.current-month[b-w2avg6of2h]::before {
  content: '';
  position: absolute;
  top: 3.25rem;
  left: calc(
          var(--first-col-width) + ((100% - var(--first-col-width)) / var(--day-count)) *
          (var(--today-index) + 0.5)
  );
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--availability-today-accent);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 560px) {
  .calendar-table[b-w2avg6of2h] {
    --first-col-width: 10rem;
  }

  .worker-cell[b-w2avg6of2h] {
    padding: 8px;
  }

  .worker-card[b-w2avg6of2h] {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .calendar-table[b-w2avg6of2h] {
    --first-col-width: 8rem;
  }
}
/* /Pages/Organisations/View/WorkersAvailability/WorkerDay.razor.rz.scp.css */
 .worker-availability-day[b-kmxykuwik2] {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
}

.continuous-right[b-kmxykuwik2] {
    width: calc(100% + 1px);
    margin-right: -1px;
    z-index: 1;
}

.half[b-kmxykuwik2] {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.half-top[b-kmxykuwik2] {
    border-bottom: none;
}

.half-bottom[b-kmxykuwik2] {
    border-top: none;
}

.icon-slot-half[b-kmxykuwik2] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-slot-full[b-kmxykuwik2] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.icon-slot-half i[b-kmxykuwik2],
.icon-slot-full i[b-kmxykuwik2] {
    font-size: 1.1em;
    color: #222;
}
/* /Pages/Organisations/View/WorkersAvailability/WorkersAvailability.razor.rz.scp.css */
.calendar-container[b-w6l9jf23s8] {
  --availability-table-offset: 22rem;
  --availability-bg: #f7f7fb;
  --availability-border: #d8d8d8;
  --availability-cell-bg: #f7f7f7;
  --availability-today-accent: red;
  --availability-footer-button-bg: #e3ebf1;

  max-width: 100rem;
  background: var(--availability-bg);
  border: 2px solid var(--remundo-accent-color);
  border-radius: 0.5rem;
}

.table-scroll[b-w6l9jf23s8] {
  max-height: min(70vh, calc(100dvh - var(--availability-table-offset)));
}

.table-title[b-w6l9jf23s8] {
  border-right: 2px solid var(--availability-border);
  height: 2rem;
  width: 14rem;
  min-width: 0;
  flex: 0 1 14rem;
}

.title-stepper[b-w6l9jf23s8] {
  min-width: 0;
}

.top-bar[b-w6l9jf23s8]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--availability-border);
}

.loading-overlay[b-w6l9jf23s8] {
  inset: 0;
  z-index: 4;
}

.search-filter-container[b-w6l9jf23s8] {
  flex: 1 1 15rem;
  min-width: 15rem;
}

/* The month picker is rendered by Radzen/Stepper child components, so it needs ::deep */
[b-w6l9jf23s8] .month-picker {
  width: 9rem;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-weight: bold !important;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}

[b-w6l9jf23s8] .month-picker input {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  text-align: center;
  cursor: pointer;
  width: 100%;
  user-select: none !important;
  caret-color: transparent !important;
}

[b-w6l9jf23s8] .month-picker .rz-state-disabled {
  opacity: 1 !important;
}

[b-w6l9jf23s8] .month-picker button {
  display: none !important;
}

@media (max-width: 560px) {
  .header-container[b-w6l9jf23s8] {
    gap: 0.5rem !important;
  }
}
/* /Pages/PricingCalculator/Index.razor.rz.scp.css */
.divider[b-nf0a7ackth] {
    height: 1px;
    width: 100%;
    background-color: #e0e0e0;
    margin: 2rem 0;
    border: none;
}
/* /Pages/Workers/CandidateProcessor/Components/ImportStagingArea.razor.rz.scp.css */
/* /Pages/Workers/Mfa/MfaPage.razor.rz.scp.css */
.mfa-status-row[b-3sralgy69r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-left: 3px solid #34c38f;
    border-radius: 0.5rem;
    background-color: white;
}

.mfa-status-label[b-3sralgy69r] {
    font-size: 1rem;
    font-weight: 600;
    color: var(--remundo-primary-color);
}

.mfa-active-badge[b-3sralgy69r] {
    display: inline-block;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.3rem;
    line-height: 1.2;
}

.mfa-method-badge[b-3sralgy69r] {
    display: inline-block;
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 400;
    margin-left: 0.5rem;
    align-self: center;
}

.badge-active[b-3sralgy69r] {
    background-color: #34c38f;
    color: white;
}

.badge-inactive[b-3sralgy69r] {
    background-color: #bd1f37;
    color: white;
}

.mfa-resets-section[b-3sralgy69r] {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.mfa-resets-table[b-3sralgy69r] {
    margin-bottom: 0;
}

.mfa-resets-table thead th[b-3sralgy69r] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    border-bottom: 2px solid #e0e0e0;
    border-top: none;
    padding: 0.6rem 0.75rem;
}

.mfa-resets-table tbody td[b-3sralgy69r] {
    vertical-align: middle;
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--remundo-primary-color);
}

.mfa-resets-table tbody tr:last-child td[b-3sralgy69r] {
    border-bottom: none;
}

.mfa-status-text[b-3sralgy69r] {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.status-pending[b-3sralgy69r] {
    color: #e6a817;
}

.status-approved[b-3sralgy69r] {
    color: #34c38f;
}

.status-rejected[b-3sralgy69r] {
    color: #bd1f37;
}

.mfa-btn-approve[b-3sralgy69r] {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border: 1.5px solid #34c38f;
    color: #34c38f;
    background-color: white;
    border-radius: 0.25rem;
}

.mfa-btn-approve:hover[b-3sralgy69r] {
    background-color: #34c38f;
    color: white;
}

.mfa-btn-reject[b-3sralgy69r] {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border: 1.5px solid #bd1f37;
    color: #bd1f37;
    background-color: white;
    border-radius: 0.25rem;
}

.mfa-btn-reject:hover[b-3sralgy69r] {
    background-color: #bd1f37;
    color: white;
}

.mfa-tooltip-text[b-3sralgy69r] {
    color: #2A4155;
    background: white;
    max-width: 20rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
/* /Pages/Workers/PhoneNumberVerification/PhoneNumberVerificationPage.razor.rz.scp.css */
.pnv-section-header[b-1205cbteef] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.pnv-card[b-1205cbteef] {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 0.75rem;
}

.pnv-card-title[b-1205cbteef] {
    font-size: 1rem;
    color: var(--remundo-primary-color);
}

.pnv-badge-pending[b-1205cbteef] {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 0.3rem;
    background-color: #e6a817;
    color: white;
    line-height: 1.4;
}

.pnv-detail-row[b-1205cbteef] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.85rem;
    color: var(--remundo-primary-color);
}

.pnv-label[b-1205cbteef] {
    font-weight: 600;
}

.pnv-actions-row[b-1205cbteef] {
    flex-wrap: wrap;
}

.pnv-btn-verify[b-1205cbteef] {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    background-color: var(--remundo-primary-color);
    color: white;
    border: none;
    border-radius: 0.3rem;
}

.pnv-btn-verify:hover:not(:disabled)[b-1205cbteef] {
    opacity: 0.85;
    color: white;
}

.pnv-btn-not-verified[b-1205cbteef] {
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.35rem 1rem;
    background-color: var(--remundo-primary-color);
    color: white;
    border: none;
    border-radius: 0.3rem;
}

.pnv-btn-not-verified:hover:not(:disabled)[b-1205cbteef] {
    opacity: 0.85;
    color: white;
}

.pnv-empty-card[b-1205cbteef] {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 0.75rem;
}

.pnv-history-card[b-1205cbteef] {
    background-color: white;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    padding: 1.25rem;
}

.pnv-history-table[b-1205cbteef] {
    margin-bottom: 0;
}

.pnv-history-table thead th[b-1205cbteef] {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6c757d;
    border-bottom: 2px solid #e0e0e0;
    border-top: none;
    padding: 0.6rem 0.75rem;
}

.pnv-history-table tbody td[b-1205cbteef] {
    vertical-align: middle;
    padding: 0.85rem 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--remundo-primary-color);
    font-size: 0.9rem;
}

.pnv-history-table tbody tr:last-child td[b-1205cbteef] {
    border-bottom: none;
}

.pnv-result-badge[b-1205cbteef] {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0.3rem;
    color: white;
    white-space: nowrap;
}

.pnv-badge-verified[b-1205cbteef] {
    background-color: #34c38f;
}

.pnv-badge-not-verified[b-1205cbteef] {
    background-color: #bd1f37;
}

.pnv-reason-cell[b-1205cbteef] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 280px;
}

.pnv-reason-text[b-1205cbteef] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.pnv-reason-icon[b-1205cbteef] {
    color: #6c757d;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pnv-tooltip-text[b-1205cbteef] {
    color: #2A4155;
    background: white;
    max-width: 20rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}
/* /Pages/Workers/WorkerCalendar/WorkerCalendar.razor.rz.scp.css */
.year-calendar[b-l1sc2dc0cc] {
    display: block;
    background: #F7F7FB;
    border: 0.1875rem solid #F3B82F;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.month-calendar[b-l1sc2dc0cc] {
    display: none;
}

@media (max-width: 1024px) {
    .year-calendar[b-l1sc2dc0cc] {
        display: none !important;
    }

    .month-calendar[b-l1sc2dc0cc] {
        display: block !important;
    }
}

.calendar-header-row[b-l1sc2dc0cc] {
    display: grid;
    grid-template-columns: 120px 1fr;
    background-color: #F7F7FB;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.month-label-spacer[b-l1sc2dc0cc] {
    width: 30px;
    height: 100%;
    display: inline-block;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    margin: 0 8px;
}

.calendar-navigation[b-l1sc2dc0cc] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-chevron[b-l1sc2dc0cc] {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 1.2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-chevron:hover[b-l1sc2dc0cc] {
    color: var(--remundo-primary-color);
}

.calendar-title[b-l1sc2dc0cc] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    min-width: 60px;
    text-align: center;
}

.calendar-title.current-year[b-l1sc2dc0cc] {
    color: var(--remundo-primary-color);
}

.header-weekdays[b-l1sc2dc0cc] {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
    padding: 2px 8px;
    align-items: center;
}

.header-weekday[b-l1sc2dc0cc] {
    width: 35px;
    flex-shrink: 0;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--remundo-primary-color);
}

.calendar-month-row[b-l1sc2dc0cc] {
    display: grid;
    grid-template-columns: 120px 1fr;
    border-bottom: 1px solid var(--remundo-secondary-color-light);
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.calendar-month-row:last-child[b-l1sc2dc0cc] {
    border-bottom: none;
}

.month-label[b-l1sc2dc0cc] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--remundo-primary-color);
    background-color: var(--remundo-secondary-color-light);
    position: relative;
}

.month-label span[b-l1sc2dc0cc] {
    display: inline-block;
    text-align: center;
}

.month-label[b-l1sc2dc0cc]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
}

.month-days-container[b-l1sc2dc0cc] {
    display: flex;
    flex-direction: column;
    padding: 2px 8px;
    background-color: #F7F7FB;
}

.month-days-grid[b-l1sc2dc0cc] {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px;
}

.calendar-day-card[b-l1sc2dc0cc] {
    background-color: #F7F7F7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    height: 60px;
    width: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.calendar-day-card.empty[b-l1sc2dc0cc] {
    background-color: transparent;
    border: none;
    cursor: default;
    pointer-events: none;
}

.calendar-day-card.weekend[b-l1sc2dc0cc] {
    background-color: #DEE6EE;
}

/* Day content layout - icon at top, number at bottom for ALL cards */
.calendar-day-card .day-content[b-l1sc2dc0cc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    padding: 4px 2px;
}

.day-icon-area[b-l1sc2dc0cc] {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
}

.day-icon-area i[b-l1sc2dc0cc] {
    font-size: 0.85rem;
}

.day-number-area[b-l1sc2dc0cc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-top: auto;
}

.day-number[b-l1sc2dc0cc] {
    font-size: 1rem;
    font-weight: 700;
    color: var(--remundo-primary-color);
    line-height: 1;
}

.day-number-light[b-l1sc2dc0cc] {
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.today-indicator[b-l1sc2dc0cc] {
    font-size: 0.7rem;
    color: #000;
    font-weight: bold;
    line-height: 1;
}

.today-arrow[b-l1sc2dc0cc] {
    font-size: 0.6rem;
    color: #000;
    line-height: 1;
}

/* Split day styling (AM and PM different events) */
.split-day-container[b-l1sc2dc0cc] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.split-day-half[b-l1sc2dc0cc] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.split-day-top[b-l1sc2dc0cc] {
    border-radius: 3px 3px 0 0;
}

.split-day-bottom[b-l1sc2dc0cc] {
    border-radius: 0 0 3px 3px;
}

.split-icon[b-l1sc2dc0cc] {
    font-size: 0.65rem;
    color: white;
}

.split-day-number[b-l1sc2dc0cc] {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Half day styling (only AM or PM has event) */
.half-day-container[b-l1sc2dc0cc] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.half-day-top[b-l1sc2dc0cc] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 3px 3px 0 0;
}

.half-day-bottom[b-l1sc2dc0cc] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 0 0 3px 3px;
}

.half-day-top-empty[b-l1sc2dc0cc] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 3px 3px 0 0;
}

.half-day-bottom-empty[b-l1sc2dc0cc] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 0 0 3px 3px;
}

.half-day-icon[b-l1sc2dc0cc] {
    font-size: 0.7rem;
    color: white;
}

/* Today styling */
.calendar-day-card.today[b-l1sc2dc0cc] {
    border: 2px solid #000;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Selected day styling */
.calendar-day-card.selected[b-l1sc2dc0cc] {
    border-color: var(--remundo-primary-color);
    box-shadow: 0 0 0 2px var(--remundo-primary-color);
}

/* Has event styling */
.calendar-day-card.has-event[b-l1sc2dc0cc] {
    border-color: transparent;
}

.day-detail-popup[b-l1sc2dc0cc] {
    position: absolute;
    z-index: 500;
    background: #ffffff;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.75rem;
    box-shadow: 0 0.375rem 1.5rem rgba(0, 0, 0, 0.18);
    min-width: 13.75rem;
    max-width: 17.5rem;
    padding: 1rem;
    animation: popupFadeIn-b-l1sc2dc0cc 0.15s ease;
    pointer-events: auto;
}

@keyframes popupFadeIn-b-l1sc2dc0cc {
    from {
        opacity: 0;
        transform: translateY(0.375rem) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.day-detail-popup-worker[b-l1sc2dc0cc] {
    font-size: 1rem;
    font-weight: 700;
    color: #2c4154;
    margin-bottom: 0.25rem;
    border-bottom: none;
}

.day-detail-popup-event[b-l1sc2dc0cc] {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
}

.day-detail-popup-event + .day-detail-popup-event[b-l1sc2dc0cc] {
    border-top: 0.0625rem solid #f0f0f0;
}

.day-detail-popup-event:first-of-type[b-l1sc2dc0cc] {
    padding-top: 0;
    margin-top: 0;
}

.day-detail-event-title[b-l1sc2dc0cc] {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Weekend label � grey/blue like the reference image */
.day-detail-weekend[b-l1sc2dc0cc] {
    color: #4a6580;
}

/* Working Day label � neutral dark */
.day-detail-working-day[b-l1sc2dc0cc] {
    color: #555;
}

.day-detail-popup-row[b-l1sc2dc0cc] {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 0.25rem;
}

.day-detail-popup-label[b-l1sc2dc0cc] {
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Status colour variants */
.status-approved[b-l1sc2dc0cc] {
    color: #2e7d32;
    font-weight: 600;
}

.status-pending[b-l1sc2dc0cc] {
    color: #e65100;
    font-weight: 600;
}

.status-rejected[b-l1sc2dc0cc] {
    color: #b71c1c;
    font-weight: 600;
}

.status-past[b-l1sc2dc0cc] {
    color: #757575;
    font-weight: 600;
}

.status-cancelled[b-l1sc2dc0cc] {
    color: #9e9e9e;
    font-weight: 600;
    text-decoration: line-through;
}

.status-default[b-l1sc2dc0cc] {
    color: #555;
    font-weight: 600;
}

/* Calendar container and colours */
.worker-calendar-container[b-l1sc2dc0cc] {
    width: 100%;
    box-sizing: border-box;
    max-width: 106.25rem;
    padding-bottom: 3.125rem;
    position: relative; /* anchor for the popup */
}

.calendar-colours[b-l1sc2dc0cc] {
    --weekend-bg: #dee6ee;
    --public-holiday-bg: #b8d4e3;
    --annual-leave-bg: #9796f2;
    --medical-leave-bg: #c899a2;
    --unpaid-leave-bg: #f5c6aa;
    --bonus-day-bg: #a5d6a7;
    --engagement-start-bg: #81D4FA;
    --engagement-end-bg: #FFAB91;
    --special-event-bg: inherit;
    --special-event-border: #2f93b1;
    --rejected-border: #bd1f37;
    --pending-border: #f1ad0e;

    /* Text-friendly variants (darkened from the bg palette) for popup titles */
    --annual-leave-text: color-mix(in srgb, var(--annual-leave-bg), black 35%);
    --medical-leave-text: color-mix(in srgb, var(--medical-leave-bg), black 35%);
    --unpaid-leave-text: color-mix(in srgb, var(--unpaid-leave-bg), black 40%);
    --bonus-day-text: color-mix(in srgb, var(--bonus-day-bg), black 40%);
    --public-holiday-text: color-mix(in srgb, var(--public-holiday-bg), black 40%);
    --engagement-start-text: color-mix(in srgb, var(--engagement-start-bg), black 40%);
    --engagement-end-text: color-mix(in srgb, var(--engagement-end-bg), black 35%);
}

/* Calendar Key Button & Popup */
.calendar-key-container[b-l1sc2dc0cc] {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.calendar-key-button[b-l1sc2dc0cc] {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border: 0.125rem solid #F3B82F;
    border-radius: 0.375rem;
    background-color: #F7F7FB;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--remundo-primary-color);
    transition: background-color 0.2s, box-shadow 0.2s;
}

.calendar-key-button:hover[b-l1sc2dc0cc] {
    background-color: #eeeef5;
    box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.1);
}

.calendar-key-label[b-l1sc2dc0cc] {
    font-weight: 700;
}

.calendar-key-icon[b-l1sc2dc0cc] {
    font-size: 1rem;
    color: var(--remundo-primary-color);
}

.calendar-key-popup[b-l1sc2dc0cc] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    margin-top: 0.25rem;
    min-width: 17.5rem;
    max-width: 20rem;
    background: white;
    border: 0.0625rem solid #e0e0e0;
    border-radius: 0.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
    animation: keyPopupFadeIn-b-l1sc2dc0cc 0.2s ease;
}

@keyframes keyPopupFadeIn-b-l1sc2dc0cc {
    from {
        opacity: 0;
        transform: translateY(-0.25rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-key-popup-header[b-l1sc2dc0cc] {
    padding: 0.75rem 1rem 0.5rem;
    font-size: 1rem;
    color: var(--remundo-primary-color);
    border-bottom: 0.125rem solid #d0d0d0;
}

.calendar-key-popup-body[b-l1sc2dc0cc] {
  padding: 0.75rem 1rem 1rem;
}

.key-section[b-l1sc2dc0cc] {
    margin-bottom: 0.25rem;
}

.key-item[b-l1sc2dc0cc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.1875rem 0;
    font-size: 0.85rem;
    color: #333;
}

.key-swatch[b-l1sc2dc0cc] {
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 0.1875rem;
    border: 0.0625rem solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    margin-left: auto;
}

.key-swatch-half[b-l1sc2dc0cc] {
    background: linear-gradient(to bottom, var(--annual-leave-bg) 50%, #F7F7FB 50%);
    border: 0.0625rem solid #FFFFFF;
}

.key-divider[b-l1sc2dc0cc] {
    margin: 0.5rem 0;
    border: none;
    border-top: 0.125rem solid #d0d0d0;
}

.key-category-header[b-l1sc2dc0cc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.125rem 0 0.25rem;
    font-size: 0.9rem;
    color: var(--remundo-primary-color);
}

.key-status-row[b-l1sc2dc0cc] {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.125rem 0 0.125rem 1.625rem;
    font-size: 0.8rem;
    color: #555;
    flex-wrap: wrap;
}

.key-status-row .key-swatch[b-l1sc2dc0cc] {
    width: 0.75rem;
    height: 0.75rem;
    margin-left: 0;
}

.key-item--sub[b-l1sc2dc0cc] {
    padding-left: 1.75rem;
    font-size: 0.8rem;
    color: #555;
}

/* Month Calendar View (Mobile) */
.month-calendar[b-l1sc2dc0cc] {
    background: #F7F7FB;
    border: 0.1875rem solid #F3B82F;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    max-width: 50rem;
    margin: 0 auto;
}

.month-calendar-header[b-l1sc2dc0cc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.9375rem;
    border-bottom: 0.125rem solid #F3B82F;
}

.month-calendar-title[b-l1sc2dc0cc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3125rem;
}

.month-name[b-l1sc2dc0cc] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--remundo-primary-color);
}

.year-name[b-l1sc2dc0cc] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
}

.month-calendar-weekdays[b-l1sc2dc0cc] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3125rem;
    margin-bottom: 0.625rem;
    justify-items: center;
}

.month-weekday[b-l1sc2dc0cc] {
    position: relative;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--remundo-primary-color);
    padding: 0.625rem 0 0.875rem 0;
    margin-bottom: 0.125rem;
}

.month-weekday[b-l1sc2dc0cc]::after {
    content: '';
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: #d1d1d1;
    margin: 0.375rem auto 0 auto;
    border-radius: 0.0625rem;
}

.month-calendar-grid[b-l1sc2dc0cc] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3125rem;
    justify-items: center;
}

.month-calendar-grid .calendar-day-card[b-l1sc2dc0cc] {
    width: 100%;
    max-width: 3.75rem;
    height: 3.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .calendar-header-row[b-l1sc2dc0cc] {
        grid-template-columns: 100px 1fr;
    }

    .calendar-month-row[b-l1sc2dc0cc] {
        grid-template-columns: 100px 1fr;
    }

    .month-label[b-l1sc2dc0cc] {
        padding: 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .calendar-header-row[b-l1sc2dc0cc] {
        grid-template-columns: 80px 1fr;
    }

    .calendar-month-row[b-l1sc2dc0cc] {
        grid-template-columns: 80px 1fr;
    }

    .calendar-day-card[b-l1sc2dc0cc] {
        height: 50px;
        width: 30px;
    }

    .header-weekday[b-l1sc2dc0cc] {
        width: 30px;
        font-size: 0.9rem;
    }

    .day-number[b-l1sc2dc0cc] {
        font-size: 0.85rem;
    }

    .calendar-title[b-l1sc2dc0cc] {
        font-size: 1rem;
        min-width: 50px;
    }

    .calendar-navigation[b-l1sc2dc0cc] {
        gap: 5px;
    }

    .month-label[b-l1sc2dc0cc] {
        padding: 8px;
        font-size: 0.85rem;
    }

    .month-days-container[b-l1sc2dc0cc] {
        padding: 5px;
    }

    .month-days-grid[b-l1sc2dc0cc] {
        gap: 1px;
    }

    .header-weekdays[b-l1sc2dc0cc] {
        gap: 1px;
    }

    /* Month calendar responsive */
    .month-calendar[b-l1sc2dc0cc] {
        padding: 15px;
    }

    .month-name[b-l1sc2dc0cc] {
        font-size: 1.4rem;
    }

    .year-name[b-l1sc2dc0cc] {
        font-size: 1rem;
    }

    .month-weekday[b-l1sc2dc0cc] {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .month-calendar-grid .calendar-day-card[b-l1sc2dc0cc] {
        height: 50px;
    }
}

/* Calendar loading state */
.calendar-loading[b-l1sc2dc0cc] {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.calendar-loading-overlay[b-l1sc2dc0cc] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
}

/* Hide floating popup on mobile - use bottom panel instead */
@media (max-width: 991.98px) {
    .day-detail-popup[b-l1sc2dc0cc] {
        display: none !important;
    }
}

/* Month view inline detail section */
.month-day-detail-panel[b-l1sc2dc0cc] {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.125rem solid #F3B82F;
    animation: monthDetailSlideIn-b-l1sc2dc0cc 0.2s ease;
}

@keyframes monthDetailSlideIn-b-l1sc2dc0cc {
    from {
        opacity: 0;
        transform: translateY(0.375rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.month-day-detail-header[b-l1sc2dc0cc] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.month-day-detail-date[b-l1sc2dc0cc] {
    font-size: 1rem;
    font-weight: 700;
    color: #2c4154;
}

.month-day-detail-close[b-l1sc2dc0cc] {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 0.8rem;
    padding: 0.125rem 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    transition: background-color 0.15s, color 0.15s;
    flex-shrink: 0;
}

.month-day-detail-close:hover[b-l1sc2dc0cc] {
    background-color: #f0f0f0;
    color: #333;
}

.month-day-detail-worker[b-l1sc2dc0cc] {
    font-size: 1rem;
    font-weight: 700;
    color: #2c4154;
    margin-bottom: 0.75rem;
}

.month-day-detail-event[b-l1sc2dc0cc] {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.month-day-detail-event + .month-day-detail-event[b-l1sc2dc0cc] {
    border-top: 0.0625rem solid #ebebeb;
}

.month-day-detail-event:first-of-type[b-l1sc2dc0cc] {
    padding-top: 0;
    margin-top: 0;
}
/* /Shared/Components/Timeline.razor.rz.scp.css */
  .title[b-yoq2koehae] {
    margin-bottom: 1.5rem;
  }

  .timeline[b-yoq2koehae] {
    margin-left: 3rem;
  }

  .card[b-yoq2koehae] {
    background-color: white;
    border: 1px solid #cccccc;
    border-radius: var(--remundo-border-radius-l);
    padding: 2rem;
    width: fit-content;
  }

  .remundo-primary[b-yoq2koehae] {
    color: var(--remundo-color-primary);
  }

  .header-container[b-yoq2koehae] {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
  }

  .body-container[b-yoq2koehae] {
    padding-left: 1.5rem;
    border-left: 1px solid lightgray;
    padding-top: 1rem;
    margin-left: 0.5rem;
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .header[b-yoq2koehae] {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
  }

  .body[b-yoq2koehae] {
    padding-left: 1rem;
    font-weight: 500;
  }

  .colour-green[b-yoq2koehae] {
    color: rgb(2, 202, 2);
  }

  .colour-yellow[b-yoq2koehae] {
    color: var(--remundo-accent-color);
  }

  .colour-red[b-yoq2koehae] {
    color: var(--remundo-error-color);
  }

  .colour-default[b-yoq2koehae] {
     color: var(--remundo-primary-color);
   }

  .link[b-yoq2koehae] {
    color: #556ee6;
    margin-right: 1rem;
    text-decoration: underline !important;
  }

  .btn-primary[b-yoq2koehae] {
    background-color: var(--remundo-primary-color);
    color: white;
    border: none;
    border-radius: 2rem;
  }

  p[b-yoq2koehae] {
    margin-bottom: -0.5rem;
  }
/* /Shared/Components/TimesheetWeekDisplay.razor.rz.scp.css */
.rounded-table[b-flped4mwcb] {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid;
}

.rounded-table thead[b-flped4mwcb] {
   text-align: center;
   font-size: smaller;
}

.rounded-table thead tr:last-child th[b-flped4mwcb] {
    border-bottom: 1px solid #d3d3d3;
    background-color: #f7f7f7;
}

.rounded-table thead tr:first-child th:first-child[b-flped4mwcb] {
    border-top-left-radius: 8px;
}

.rounded-table thead tr:first-child th:last-child[b-flped4mwcb] {
    border-top-right-radius: 8px;
}

.rounded-table tbody tr:last-child td:first-child[b-flped4mwcb] {
    border-bottom-left-radius: 8px;
}

.rounded-table tbody tr:last-child td:last-child[b-flped4mwcb] {
    border-bottom-right-radius: 8px;
}

.rounded-table th[b-flped4mwcb] {
    padding: 0.1rem 1rem;
}

.rounded-table td[b-flped4mwcb] {
    padding: 1rem;
    font-weight: 500;
    text-align: center;
}

.weekend-cell[b-flped4mwcb] {
    background-color: #D5C5FF44 !important;
}

.overtime-divider[b-flped4mwcb] {
    border-top: 2px solid #d3d3d3 !important;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-top: 0.5rem;
}
/* /Shared/Form/Edit/ReadinessToggle.razor.rz.scp.css */
.vertical-center[b-salidq9rhp] {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.container[b-salidq9rhp] {
    position: relative;
    display: flex;
    justify-content: center;
}

input:checked + div #inactive[b-salidq9rhp] {
    background-color: WhiteSmoke;
    stroke: black;
    fill: black;
}

input:checked + div #active[b-salidq9rhp] {
    background-color: #03C03C;
    stroke: white;
    fill: white;
}

input + div #inactive[b-salidq9rhp] {
    background-color: red;
    stroke: white;
    fill: white;
}

input + div #active[b-salidq9rhp] {
    background-color: WhiteSmoke;
    stroke: black;
    fill: black;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-8v9o9cmyjp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8v9o9cmyjp] {
    flex: 1;
}

.sidebar[b-8v9o9cmyjp] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8v9o9cmyjp] {
    background-color: whitesmoke;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-8v9o9cmyjp]  a, .top-row[b-8v9o9cmyjp]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-8v9o9cmyjp]  a:hover, .top-row[b-8v9o9cmyjp]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-8v9o9cmyjp]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-8v9o9cmyjp] {
        display: none;
    }

    .top-row.auth[b-8v9o9cmyjp] {
        justify-content: space-between;
    }

    .top-row[b-8v9o9cmyjp]  a, .top-row[b-8v9o9cmyjp]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8v9o9cmyjp] {
        flex-direction: row;
    }

    .sidebar[b-8v9o9cmyjp] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8v9o9cmyjp] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-8v9o9cmyjp]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-8v9o9cmyjp], article[b-8v9o9cmyjp] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

.fab[b-8v9o9cmyjp] {
    position: fixed;
    top: 55px;
    right: 20px;
    z-index: 1000;
    width: 46px;
    height: 46px;
}

.liveupdates-sidebar[b-8v9o9cmyjp] {
    width: 55vw !important; /* Set width to 40% of viewport */
    max-width: none; /* Ensure Bootstrap�s max-width doesn�t override it */
}

.liveupdates-sidebar.fullscreen[b-8v9o9cmyjp]{
    width: 100vw !important;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-jsuvu0djby] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-jsuvu0djby] {
    height: 3.5rem;
    background-color: whitesmoke;
}

.navbar-brand[b-jsuvu0djby] {
    /*font-size: 1.1rem;*/
    /*background-image: url(/images/remundo-logo-with-text-color.svg);*/
    height: 3.5rem;
}

.remundo-nav[b-jsuvu0djby] {
    background-image: url(/images/cropped-logo.svg);
    background-size: 30vh;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-color: #fafbfd;
}

.oi[b-jsuvu0djby] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-jsuvu0djby] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-jsuvu0djby] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-jsuvu0djby] {
    padding-bottom: 1rem;
}

.nav-item[b-jsuvu0djby]  a {
    color: black;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item[b-jsuvu0djby]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: grey;
}

.nav-item[b-jsuvu0djby]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: grey;
}
.customerNavItem[b-jsuvu0djby] {
    width: max-content;
    font-size: small !important;
    color: black !important;
}

@media (min-width: 641px) {
    .navbar-toggler[b-jsuvu0djby] {
        display: none;
    }

    .collapse[b-jsuvu0djby] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-jsuvu0djby] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
