:root{
    /* First, we convert our color to perceptual grayscale by taking only the lightness channel from lch */
    --primary-color-grayscale: oklch(from var(--primary-color) l 0 0);

    /*
      In hwb, grayscale colors have a complimentary w b channels where w + b = 100%
      If we subtract 50 from both w and b we get one negative and one positive value.
      Then we multiply each by a large value (999) to make sure the values are well below 0 or above 100.
      The resulting color will be black or white.
    */
    --primary-color-black-or-white: hwb(from var(--primary-color-grayscale) h calc(((w - 50) * 999)) calc(((b - 50) * 999)));

    /* Finally, we swap the new w and b values to invert the black to white or vice versa */
    --primary-contrast-color: hwb(from var(--primary-color-black-or-white) h b w);
}

@font-face {
    font-family: 'FallingSky';
    src: url('/fonts/fallingsky.ttf') format('truetype');
}

/***
Responsive Tables
 */

/* * CSS Custom Properties for Theming
         * This makes the table themeable for both light and dark modes.
        */
:root {
    --table-bg: #ffffff;
    --table-text-color: #374151; /* gray-700 */
    --table-header-bg: #f9fafb; /* gray-50 */
    --table-header-text-color: #6b7280; /* gray-500 */
    --table-border-color: #e5e7eb; /* gray-200 */
    --table-striped-bg: #f9fafb; /* gray-50 */
    --table-hover-bg: #f3f4f6; /* gray-100 */
}

html.dark-mode {
    --table-bg: #3e3e3e;
    --table-text-color: rgba(255, 255, 255, 0.95);
    --table-header-bg: #272727;
    --table-header-text-color: rgba(255, 255, 255, 0.82);
    --table-border-color: rgba(255, 255, 255, 0.12);
    --table-striped-bg: rgba(255, 255, 255, 0.05);
    --table-hover-bg: rgba(255, 255, 255, 0.08);
}

/* Main container for horizontal scrolling */
.responsive-table-container {
    overflow-x: auto;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--table-border-color);
}

#user-notes-table .responsive-table-container{
    overflow: hidden;
}

/* General table styles */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    white-space: nowrap;
}

/* Header and data cell base styles */
.responsive-table th {
    background-color: var(--table-header-bg);
    color: var(--table-header-text-color);
}

.responsive-table td {
    background-color: var(--table-bg);
    color: var(--table-text-color);
    border-bottom: 1px solid var(--table-border-color);
}

/* --- Striped and Highlighted Row Styling --- */
/* By targeting the 'td' elements, we ensure the background applies correctly, even to sticky columns. */
.responsive-table.striped tbody tr:nth-child(odd) td {
    background-color: var(--table-striped-bg);
}

.responsive-table.highlight tbody tr:hover td {
    background-color: var(--table-hover-bg);
}

/* --- Sticky Column Styling --- */
.responsive-table .sticky-col {
    position: -webkit-sticky; /* For Safari compatibility */
    position: sticky;
    z-index: 10;
    border-right: 1px solid var(--table-border-color);
}

.invoice-item:after {
    content: 'Merchant: ' attr(data-percent) ' %' attr(data-amount);
    position: absolute;
    width: 100%;
    font-size: 12px;
    background: #f1f1f1;
    bottom: 0;
    text-align: center;
    left: 50%;
    transform: translate(-50%, 0);
}

.icon-button:hover {
    scale: 1.2;
    color: dodgerblue;
}

.icon-button {
    transition: 150ms;
    color: black;
    scale: 1;
    cursor: pointer;
}

.signature-modal .modal-footer {
    background-color: #f8f9fa !important;
    padding: 1rem 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#student-comments tbody {
    height: 100%;
}

td:has(.floating-cell) {
    position: relative;
}

.floating-cell.center {
    left: 50%;
    transform: translateX(-50%);
}

.floating-cell.running-balance {
    font-size: 12px;
    opacity: 0.6;
}

.floating-cell {
    position: absolute;
    bottom: -8px;
    background: #f1f1f1;
    padding: 2px 10px;
    border-radius: 4px;
    pointer-events: none;
    display: flex;
    justify-content: center; /* Center content horizontally */
    width: auto; /* Let content determine width */
    z-index: 20;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    left: 12px
}

.comment-cell {
    display: flex;
    align-items: center;
    width: 100%;
}

.comment-input-cell td {
    width: 100%;
}

.signature-modal .modal-footer .btn {
    border-radius: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
}

.signature-modal .modal-footer .btn:hover {
    transform: translateY(-1px);
}

.signature-modal .modal-footer .modal-close {
    background-color: #e74c3c;
    color: white !important;
}

.signature-modal .modal-footer .apply-btn {
    background-color: var(--primary-color);
    color: white !important;
}

/* Signature Pad Ink Color */
.signature-pad-ink {
    color: #2c3e50;
}

/* Signature Modal Styling */
.signature-modal.modal {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    max-width: 452px;
}

.signature-modal .modal-content {
    padding: 2rem;
    position: relative;
}

.signature-modal h4 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 1rem;
}

.signature-canvas-container {
    border: 2px dashed #bdc3c7;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    margin: 1rem 0;
}

.signature-canvas-container:hover {
    border-color: var(--accent-color);
    background-color: #fff;
}

.signature-modal canvas {
    width: 100% !important;
    height: 200px !important;
    cursor: crosshair;
}

.signature-hint {
    color: #95a5a6;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

.sidenav {
    z-index: 9999999;
}

.swal2-select {
    max-width: calc(100% - 64px) !important;
    background: red;

}

tr.duplicate.info-row td:first-child::before {
    background: #f44336;
    color: white;
}

/*input[type="text"]:-webkit-autofill:not([name="username"]),*/
/*input[type="password"]:-webkit-autofill:not([name="username"]),*/
/*input[type="email"]:-webkit-autofill:not([name="username"]) {*/
/*    -webkit-text-fill-color: transparent !important; !* Make text invisible *!*/
/*    caret-color: transparent !important;            !* Hide cursor/caret *!*/
/*}*/

body {
    background: #f1f1f1;
}

main {
    padding-top: 100px;
}

ul ul ul {
    margin-left: 24px;
}

.sidenav li.active a {
    display: block;
}

.sidenav li.active > a:after,
.sidenav li:not(.active):has(ul) > a:after {
    font-family: "Material Icons";
    position: absolute;
    right: 12px;
    transition: 200ms;
}

.sidenav li.active > a:after {
    content: '\e5ce';
}

.sidenav li:not(.active):has(ul) > a:after {
    content: '\e5cf';
}

.navigation {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
}

stat-cell {
    min-width: 200px;
    min-height: 260px;
}

.stat-value {
    margin: 1rem;
}


status-filter-button[disabled] {
    opacity: 0.5;
    transition: 200ms;
}

status-filter-button.active {
    filter: grayscale(100%);
}

status-filter-button[disabled], status-filter-button.active {
    color: white;
    transition: 200ms;
    pointer-events: none;
    cursor: inherit;
}

.pagination li.disabled * {
    pointer-events: none;
    color: #0d3440;
}

* {
    font-family: 'FallingSky', 'Roboto';;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 200% !important; /* Adjust as needed */
}

p, td, th {
    font-size: 90% !important;
    margin: 5px 0 !important;
}

.tooltipped.rev-item:after {
    content: "\e88f";
    font-family: 'Material Icons';
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 8px;
}

.tooltipped.rev-item:before {
    content: "\e889";
    font-family: 'Material Icons';
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 8px;
}

.rev-item {
    display: flex;
}

.rev-created-text {
    color: var(--primary-color);
}

.rev-deleted-text {
    color: #f00;
}

.rev-modified-text {
    color: var(--accent-color);
}

.quick-access {
    background: var(--surface-background-color);
    display: inline-flex; /* Changed from inline-flex to flex */
    vertical-align: middle;
    width: 100%;
    margin: auto;
    top: 0;
    z-index: 1000; /* Ensure it stays above other content */
    overflow: auto;
}

.selectable {
    cursor: pointer;
    transition: 200ms;
}

.table-icon {
    display: flex;
    align-items: center;
}

.selectable:hover {
    cursor: pointer;
    color: var(--primary-color) !important;
}

.day.selected {
    border: 2px solid #f00 !important;
    transition: 100ms;
}

.transition-margin {
    transition: margin-left 200ms ease;
}

.quick-access li.quick-access-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
}

.tab-link {
    display: flex;
    align-items: center; /* Aligns the icon and text vertically */
}

.tab-link a {
    white-space: nowrap;
}

.tab-link i.material-icons {
    margin-right: 8px; /* Adds some space between the icon and the text */
    font-size: 20px; /* Adjust the size of the icon as needed */
    vertical-align: middle; /* Aligns it to the middle of the text */
}

.tab-link i.material-icons:last-child {
    margin-left: 12px;
    cursor: pointer;
}

.tab-link i.material-icons:last-child:hover {
    color: var(--secondary-color);
    transition: 200ms;
}


@media print {
    @page {
        size: landscape;
    }

    body {
        width: 100%;
        height: 100%;
        font-size: 14pt;
        color: black;
    }

    .charts .col {
        width: 100% !important;
    }

    .navbar, .footer, .sidebar, .navigation, .section > .row.center.valign-wrapper:first-child, .stat-buttons {
        display: none;
    }
}

.content {
    box-sizing: border-box;
    height: fit-content;
    overflow: auto;
}

.student-search .swal2-html-container {
    height: 600px !important;
}

.select-wrapper ul {
    max-height: 400px;
}

#qr-modal .modal-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#qrcode {
    margin: auto;
}

.datepicker-modal, .datepicker-container {
    height: 100% !important;
}

.led-red {
    margin: 20px auto;
    width: 12px;
    height: 12px;
    background-color: #f90;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #600 0 -1px 9px, #F00 0 2px 12px;
}

.led-green {
    margin: 20px auto;
    width: 12px;
    height: 12px;
    background-color: #690;
    border-radius: 50%;
    box-shadow: #000 0 -1px 7px 1px, inset #460 0 -1px 9px, #7D0 0 2px 12px;
}

.modal.modal-fixed-footer {
    overflow-y: hidden;
}

.modal.modal-fixed-footer .modal-content {
    overflow-y: auto;
    margin-bottom: 64px;
}

.modal {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #ddd;
}

.modal-header {
    border-bottom: 1px solid #ddd;
    padding: 20px;
    text-align: left;
}

.modal-header h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    margin: 0;
}

.modal-body {
    padding: 20px;
}

.alert-modal {
    width: 30% !important;
}

thead.sticky {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 100;
}

.hide-nav {
    display: none;
}

.expand-content {
    grid-column: 1/15 !important;
}

.month-prev, .month-next {
    align-items: center;
    justify-content: center;
    display: flex;
}

#hamburger {
    position: fixed;
    left: 8px;
    top: 8px;
}

#hamburger:hover {
    cursor: pointer;
}

.month-prev > svg, .month-next > svg {
    fill: var(--primary-color);
    margin: auto;
}

.month-next {
    justify-content: right;
}

.scrollable {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

#map {
    height: 300px;
}

.sorting:after {
    font-family: 'Material Icons';
    content: '\e8d5';
}

.swal2-container .select-wrapper {
    display: none !important;
    z-index: 9999 !important;
}

.row.stats {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.sorting.sorting_asc:after {
    font-family: "Material Icons";
    content: '\e5d8';
}

.sorting.sorting_desc:after {
    font-family: "Material Icons";
    content: '\e5db';
}

.logo {
    width: auto;
    height: 35vh;
}

.center-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

button {
    font-size: 28px;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 2fr 8fr 1fr;
    grid-template-rows: 1fr;
}

button:focus {
    background: var(--primary-color);
}

.btn-block {
    min-width: 100%;
}

#breadcrumb {
    padding-left: 32px;
}

.custom-dropdown {
    min-width: 140px;
}

.dropdown-list {
    min-width: 200px;
    width: 100%;
}

/*tbody tr:hover::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 4px;*/
/*    height: 100%;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    background-color: var(--primary-color);*/
/*    opacity: 0.2;*/
/*    transition: width 500ms;*/
/*    z-index: 0;*/
/*}*/

/*tbody tr:hover:hover::after {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    transition: width 500ms;*/
/*}*/

/*tbody tr::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 0;*/
/*    height: 100%;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    transform: translateX(0);*/
/*    background-color: var(--primary-color);*/
/*    transition: width 350ms;*/
/*}*/

tbody tr i {
    transition-duration: 100ms;
}
/*Disable browser default autocomplete*/
.chip input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

tbody tr i:hover {
    background: var(--primary-color);
    border-radius: 4px;
}

.pagination {
    cursor: pointer;
}

th.input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.pagination.disabled {
    pointer-events: none;
    color: #0d3440;
}

.pagination li:hover {
    background: var(--primary-color);
    color: white;
    transition: 200ms;
}

.pagination li:hover a {
    color: white;
    transition: 300ms;
}

.copyright {
    position: fixed;
    left: 24px;
    bottom: 0;
    color: white;
}

.copyright a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

/* width */
::-webkit-scrollbar {
    width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(240, 248, 255, 0.49);
    -webkit-backdrop-filter: blur(4px);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555555;
}

.hiddenfile {
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.sticky-table {
    position: relative;
}

.sticky-table th {
    position: sticky;
    top: -12px; /* Don't forget this, required for the stickiness ul.select-dropdown, ul.dropdown-content */
    background: whitesmoke;
    z-index: 1;
}

ul.select-dropdown,
ul.dropdown-content {
    min-width: 30% !important;
    max-width: 100% !important;
    min-height: 48px !important;

    li > span {
        white-space: nowrap;
    }
}

.swal2-confirm {
    background: var(--primary-color) !important;
}

.swal2-cancel {
    background: var(--secondary-color) !important;
}

.swal2-danger {
    background: #a00 !important;
}

.swal2-close {
    border-style: none !important;
    background: var(--primary-color) !important;
}

.form-block {
    background: rgba(255, 255, 255, 0.8);
}

.sub-tab {
    background: var(--primary-color) !important;
}

.clear-button.active {
    opacity: 1;
}

.clear-button:hover {
    background-color: #f1f1f1; /* Add a hover effect */
}

.pagination li[disabled].active {
    background: #0d3440;
    color: white;
}

.pagination li[disabled], .pagination li[disabled] a {
    pointer-events: none;
    color: #FFF;
    background: transparent;
}

.pagination li[disabled] a {
    background: transparent;
}

table [disabled] thead[disabled] tr:not(.toolbar), table [disabled] button:not(.async) {
    background: #f1f1f1;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

/*
 * Styles for the new standalone toolbar container.
 * This is a flex container for easy alignment of buttons.
 */
.table-toolbar {
    display: flex;
    margin-bottom: 1rem; /* Creates space between the toolbar and the table below */
    width: fit-content;  /* Toolbar will only be as wide as its buttons */
    border-radius: 6px;  /* Rounded corners for the entire bar */
    overflow: hidden;    /* Ensures child button corners are clipped properly */
    border: 1px solid var(--border-color, #e0e0e0); /* Optional border for visual separation */
    margin-top: 1rem;
}

/*
 * Styles for each button within the toolbar.
 */
.table-toolbar button {
    display: inline-flex; /* Use inline-flex for alignment */
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color, #f0f0f0); /* Default background color */
    color: var(--primary-text-color, #333); /* Default text color */
    border: none;
    /* Use border-right to create dividers. Simpler than pseudo-elements. */
    border-right: 1px solid var(--border-color, #e0e0e0); /* Divider between buttons */
    padding: 8px 16px;
    cursor: pointer;
    transition: background-color 200ms;
}

/* The last button should not have a divider on its right */
.table-toolbar button:last-child {
    border-right: none;
}

/* A simple, clean hover state */
.table-toolbar button:hover {
    background-color: var(--accent-color, #e0e0e0); /* Lighter background on hover */
}

/* Disabled state for the toolbar container and buttons */
.table-toolbar[disabled] {
    pointer-events: none; /* Disables all clicks on the toolbar */
    opacity: 0.6;
}

/* Your previous disabled styling is also good if you prefer it */
.table-toolbar button[disabled] {
    background: var(--border-color);
    color: var(--primary-text-color);
    cursor: not-allowed;
}

.clear-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: 8px; /* Add some space between input and button */
}

.clear-button:hover {
    background-color: #f1f1f1; /* Add a hover effect */
}

.tabs-icon {
    font-size: 10px;
    overflow: hidden;
}

.tabs-icon i {
    display: block;
    margin-top: 5px;
    margin-bottom: -15px;
    font-size: 24px;
}

.tabs-icon a.active {
    background-color: #F3F3F3;
}

/* OVERWRITE MATERIAL CSS MIN WIDTH FOR MOBILE */
.tabs .tab {
    min-width: 50px !important
}

.tabs .tab-hide {
    display: none;
}

.no-pd {
    padding: 0 !important
}

#menu {
    cursor: pointer;
    display: block;
    margin: 0;
}

.user-view {
    height: 122px;
    text-align: center;
}

#room-modal {
    width: 80% !important;
    height: 80% !important;
    max-width: 100%;
    max-height: 80%;
}

.modal.modal-fixed-footer .modal-footer {
    top: calc(100% - 56px);
}

.modal.modal-fixed-footer .modal-content:not(.datepicker-container) {
    height: calc(100% - 112px) !important;
}

.datepicker {
    height: 100%;
}

.payment-modal, #room-modal, #add-role-modal, #modal-request, #student-invoice-modal, #student-receipts-modal, #student-payment-modal, #email-modal, #bulk-payments-modal, #maintenance-modal, #bulkImportModal {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100% !important;
    top: 0 !important;
}

#letterhead, #letterhead-css-editor, #footer-css-editor, #footer {
    height: 500px;
    width: 794px;
    background: whitesmoke;
}

.context-menu {
    background: var(--surface-background-color);
    position: absolute;
    padding: 12px;
    box-shadow: 5px 5px 10px -1px rgba(0, 0, 0, 0.32);
}

.context-menu-item.separator, .context-menu-item.separator:hover {
    border-bottom: 1px solid rgba(0, 0, 0, 0.37);
    margin: 12px 0;
    height: 1px;
    padding: 0;
}

.context-menu-item {
    border-bottom: 1px solid #00000017;
    padding: 4px 8px 4px 8px;
    cursor: pointer;
    display: flex;
}

.context-menu-item i {
    font-size: 16px;
    margin: auto 8px auto 0;
}

.context-menu-item.disabled {
    background: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    color: gray;
}

.context-menu-item:hover {
    transition: 200ms;
    background: #00cfff2b;
}

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX;
}

.pagination-container {
    display: flex;
    justify-content: space-between; /* Align items to the left and center */
}

.pagination-info {
    text-align: center; /* Center the text within the container */
    position: relative; /* Make it a positioned container */
    margin: 12px;
    color: #666;
    font-size: 0.9rem;
    min-width: 100px;
}

.pagination-info p {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -50%);
}

.pagination {
    margin: auto; /* Center the item */
}

tr.loading {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: url(data:image/gif;base64,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);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50px 50px;
    content: "";
}

/*Table css*/
.table-container {
    margin-bottom: 2rem;
    background: var(--surface-background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.collapsible .table-container {

}

.collapsible .table-container .table-footer {
    display: none;
}

.table-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.page-size-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-size-selector select {
    width: auto;
    height: 2rem;
    padding: 0 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: white;
}

.pagination {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination li {
    height: 36px;
    width: 36px;
    border-radius: 4px;
    overflow: hidden;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    color: #666;
}

.pagination li.active {
    background-color: var(--link-color);
}

.pagination li.active a {
    color: white;
}

.pagination li.disabled a {
    color: #ccc;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 36px;
    padding: 0 1rem;
    background-color: var(--primary-color);
    border-radius: 4px;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.export-btn:hover {
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .table-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-left, .footer-right {
        width: 100%;
        justify-content: space-between;
    }
}

/*Autocomplete*/
.input-field:has(.autocomplete)::after {
    font-family: 'Material Icons';
    font-size: 18px;
    color: #9e9e9e;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.input-field:has(.autocomplete):not(.loading)::after {
    content: '\e8b6';
    color: #9e9e9e;
}

.input-field:has(.autocomplete.error)::after {
    content: '\e002' !important;
    color: #f44336; /* Error color */
}

/* Spinning effect for loading state */
.input-field:has(.autocomplete.loading)::after {
    animation: spin-translate 1s infinite linear;
    color: var(--primary-color); /* Optional: Highlight color for loading */
    /* Unicode for Material Icons spinner */
    transform: translateY(50%);
    content: '\e5d5';
}

/* Class to animate the spinner (other elements) */
.spinner {
    animation: spin 1s infinite linear;
}

.spinner {
    transform: translateY(50%);
    margin: auto;
}

/* Keyframes for spinning animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-translate {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

.action-item.disabled {
    cursor: not-allowed;
    color: #ccc;
    pointer-events: none;
    background: rgba(112, 112, 112, 0.51);
}

/*
        Comments style
         */

.comment-cell {
    padding: 16px !important;
    border-bottom: 1px solid #e0e0e0;
}

.comment-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.comment-metadata {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #757575;
    font-size: 12px;
}

.comment-author {
    font-weight: 500;
}

.comment-dot {
    font-size: 8px;
    line-height: 1;
}

.comment-input-cell td {
    padding: 0;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e0e0;
}

.comment-input-wrapper {
    display: flex;
    width: 100%;
    gap: 8px;
}

.comment-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: var(--surface-background-color);
    margin: 0 !important;
    height: 36px !important;
    box-sizing: border-box !important;
}

.comment-submit {
    padding: 0 16px;
    height: 36px;
    line-height: 36px;
}

/* Info Cards Styling */
.info-card {
    background: var(--surface-background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 16px;
    height: 100px;
    margin-bottom: 20px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.info-card-icon i {
    color: white;
    font-size: 24px;
}

.info-card-icon.returning {
    background-color: var(--primary-color);
}

.info-card-icon.lease {
    background-color: var(--secondary-color);
}

.info-card-icon.agency {
    background-color: var(--accent-color);
}

.info-card-icon.verified {
    background-color: var(--primary-dark);
}

.info-card-content {
    flex: 1;
}

.info-card-content span {
    color: #4a4a4a;
    font-size: 0.9rem;
}

/* Content Cards Styling */
.content-card {
    background: var(--surface-background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    border-style: none;
}

.content-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.content-card-header i, .content-card-header .material-symbols {
    color: var(--primary-color);
    margin-right: 12px;
}

.content-card-header span {
    font-size: 24px;
    color: var(--primary-dark-color);
    font-weight: 500;
}

#student-comments tbody {
    display: block;
    min-height: 350px;
    height: 100%;
    overflow-y: auto;
}

#student-comments tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

#student-comments .comment-input-cell {
    position: sticky;
    bottom: 0;
    background-color: #f5f5f5;
}

#student-comments thead {
    display: none;
}

.content-card-body {
    padding: 20px;
}

.content-card-item {
    padding: 12px;
}

.content-card-table {
    padding: 0;
}

.content-card-table .table-footer {

}

.notes-header {
    position: sticky;
    top: 0;
    background-color: white; /* Optional: to ensure it doesn't overlap with content */
    z-index: 0; /* Optional: to ensure it stays above other content */
}

.notes-header .input-field {
    margin: 0 12px 6px;
}

#user-notes-table table {
    z-index: 1;
}

#notes-modal .modal-content {
    padding: 0;
}

#user-notes-table + .table-footer {
    position: sticky;
    bottom: 0;
    z-index: 1;
    background: var(--surface-background-color);
}

/*Room Shit*/

/* Section Styles */
.section-header {
    margin: 16px 0;
}

.collapsible.collapse {
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    margin: auto;
    background: transparent;
}

.collapse-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--primary-color) !important;
    border: none !important;
    border-radius: 4px;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s;
    border-bottom: 0;
    /*    Turn off box shadow*/
    box-shadow: none;

}

.collapse-trigger:hover {
    background: var(--primary-dark-color) !important;
}

.collapse-trigger i {
    margin-right: 8px;
    transition: transform 0.3s;
}

.collapse-trigger.active i {
    transform: rotate(180deg);
}

.section-content {
    display: none;
    padding: 16px 0;
}

.section-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media only screen and (max-width: 600px) {
    .modern-tabs .tab a {
        padding: 8px;
    }

    .modern-tabs .tab a i {
        margin-right: 0;
    }

    .modern-tabs .tab a span {
        display: none;
    }
}


tr.info-row {
    position: relative; /* Ensure parent has a relative position */
    background: linear-gradient(to top, var(--primary-color) -100%, transparent 50%);
}

tr.info-row td:first-child::before {
    content: attr(data-label); /* Display the label */
    position: absolute; /* Enable absolute positioning */
    bottom: 0; /* Move to the center vertically */
    left: 50%; /* Move to the center horizontally */
    transform: translateX(-50%); /* Adjust for width and height */
    display: block; /* Make it a block-level element */
    text-align: center; /* Center the text horizontally */
    /*font-size: 0.8rem; !* Optional: Adjust the font size *!*/
    color: white;
    padding: 8px; /* Optional: Add some padding */
    border-radius: 4px; /* Optional: Round the corners */
    z-index: 10; /* Ensure it appears above other content */
    width: 100%;
}

tr:not(.duplicate).info-row td:first-child::before {
    background: var(--primary-color); /* Optional: Add a background */
}

tr.info-row:not(.duplicate) td.view-button {
    background: var(--primary-color);
}

tr.duplicate td.view-button {
    background: #f44336;
}

tr.maintenance-item.completed td:nth-child(2) {
    height: 76px;
}

tr.maintenance-item td {
    min-width: 1%;
}

tr.maintenance-item td:nth-child(2) {
    min-width: 99%;
}

tr.maintenance-item td:last-child {
    min-width: 100px;
}

tr.maintenance-item td {
    text-align: left !important;
}

tr.maintenance-item td:first-child, tr.maintenance-item td:nth-child(3) {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    color: white;
    bottom: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    background: var(--primary-color);
}

a.view-button {
    font-size: 28px;
    color: white;
    cursor: pointer;
}

a.view-button:hover {
    color: var(--primary-dark-color);
}

tr:not(.duplicate) td.view-button:hover {
    background: var(--primary-color);
    transition: 200ms;
}

tr.duplicate td.view-button:hover {
    background: #f44336;
    transition: 200ms;
}

.collapsible.content-card {
    margin-top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

td.view-button {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(0%, 12%);
    z-index: 10;
    border-radius: 0 0 6px !important;
    padding: 1px;
    display: block;
    height: 36px;
}

/*Action buttons*/

.action-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    margin-top: 1rem;
    gap: 1rem;
}

.linked-column {
    color: var(--accent-color);
    cursor: pointer;
}

.linked-column:hover {
    color: var(--secondary-color);
    transition: 200ms;
}

.modal-swal-container {
    z-index: 99999;
}


button.action-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.modal-footer.action-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
}

.modal-footer .action-item {
    height: 36px;
}

.action-item span {
    position: absolute;
    right: 0;
    left: 0;
}

.action-item.full-width {
    width: 100%;
}

.action-item:hover {
    background: var(--primary-dark-color);
    color: var(--text-color);
}

/*input-field:has(.autocomplete)*/

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    gap: 1rem;
}

.icon-wrapper i {
    font-size: 20px;
}

.relational-item::before {
    content: '\e152';
    font-family: 'Material Icons';
    font-size: 12px;
    color: var(--tag-color);
    position: absolute;
    left: 4px;
}


.relational-item + span {
    padding: 4px 1px;
    display: unset;
    cursor: pointer;
    border: 2px solid;
    border-radius: 4px;
    color: var(--tag-color);
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: auto;
    position: absolute;
    font-size: 20px !important;
    height: 32px;
}

.relational-item + span:hover {
    background: var(--tag-color);
    color: white;
    transition: 200ms;
}

.relational-item {
    position: relative;
    display: inline-block;
    height: 32px;
    padding: 4px 8px;
    padding-left: 16px;
    border: 2px solid;
    border-radius: 4px;
    margin-left: 12px;
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-color: var(--text-color);
    white-space: collapse;
    overflow: auto;
    text-overflow: ellipsis;
}

.relational-item:hover, .ledger-item.highlight .relational-item {
    background: var(--tag-color);
    color: white;
    transition: 200ms;
}

.relational-item:hover::after, .ledger-item.highlight .relational-item::after {
    color: white;
    opacity: 1;
}

/*.relational-item::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: -6px; !* Position outside the badge *!*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    width: 3px;*/
/*    height: 80%;*/
/*    background: var(--tag-color);*/
/*    border-radius: 2px;*/
/*    opacity: 0.8;*/
/*}*/

.action-item:disabled {
    background: #B5B5B5;
}

.resizable-box {
    resize: vertical; /* Could also be horizontal, vertical, or none */
    overflow: auto; /* Ensures scrollbars appear if content exceeds the new size */
    height: 200px;
    border: 1px solid #ccc;
}

.file-actions span {
    font-size: 28px;
}

#statement-view ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

#statement-view ul li {
    list-style: none;
    margin: auto;
    font-size: 24px;
}

.file-actions span:hover {
    color: var(--primary-dark-color);
    transition: 200ms;
    transform: scale(1.1);
}

.action-menu /* MaterializeCSS Waves Effect Override */
.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.4);
}

/* Optional Loading State */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.action-icon {
    cursor: pointer;
}

.action-item.loading {
    position: relative;
    pointer-events: none;
    background: linear-gradient(
            to right,
            var(--primary-color) 8%,
            var(--primary-light) 18%,
            var(--primary-color) 33%
    );
    background-size: 800px 104px;
    animation: shimmer 2s linear infinite;
}


/*Room item css*/

.room-item-menu {
    font-size: 24px;
    display: contents;
}

.room-item-button {
    float: right;
    vertical-align: middle;
    margin-left: 10px;
}

.room-item-button:hover {
    opacity: 0.8;
    transition: 300ms;
}

/**
error
 */

.toast-error p {
    font-size: 10px;
    font-style: italic;
}

.toast-error p a {
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    background: var(--primary-color);
    text-decoration: none;
}

/*.toast-error p a:after{*/
/*    font-family: 'Material Icons';*/
/*    content: '\ea9b' !important; !* Unicode for Material Icons link Content Paste Search *!*/
/*    margin-left: 4px;*/
/*    font-size: 30px;*/
/*    transform: translateY(50%);*/
/*}*/

.toast-error p a:hover {
    background: var(--primary-dark-color);
}


.error {
    border: 1px solid #f44336;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
}

.error-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.error-header i {
    color: #f44336;
    margin-right: 10px;
}

.error-body {
    display: flex;
    flex-direction: column;
}

.error-body hr {
    margin: 10px 0;
}

.auto-updater::after {
    font-family: "Material Icons";
    font-size: 24px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 6px;
}

/*Auto updater*/
.auto-updater.updating::after {
    content: "\e88b"; /* Hourglass icon */
    color: var(--secondary-color);
    animation: spin 1s infinite linear;
}

.auto-updater.updated::after {
    content: "\e5ca"; /* Checkmark icon */
    color: var(--primary-color);
}

.auto-updater.error::after {
    content: "\e001"; /* Error icon */
    color: #f44336;
}

.border-info {
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    transition: 500ms;
}

.border-info.success {
    border: 1px solid #66bb6a !important;
    box-shadow: 0 0 0 1px #66bb6a !important;
}

.border-info.danger {
    border: 1px solid #f44336 !important;
    box-shadow: 0 0 0 1px #f44336 !important;
}

/* Scope styles to NSFAS modal */
.nsfas-verification-modal {
    max-width: 600px;
    overflow: hidden;
}

.file-upload-container .input-field {
    margin-bottom: 20px;
}

.file-upload-container {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload-container:hover {
    border-color: var(--primary-color);
}

.file-upload-container .file-label {
    color: #777;
    font-size: 1.2rem;
    display: block;
}

/*TODO: Change name to something more de*/
.file-upload .file-input {
    display: none;
}

.file-upload .file-name {
    margin-top: 10px;
    color: #444;
    font-size: 0.9rem;
    font-style: italic;
}

/* Drop Zone Styling */
.drop-zone {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    background-color: var(--primary-background-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 15px; /* Space before download link */
}

.drop-zone:hover, .drop-zone.dragover {
    background-color: var(--primary-color, #e3f2fd);
    border-color: #9e9e9e;
}

.drop-zone p {
    margin: 5px 0;
    color: var(--secondary-text-color);
}


/* Summary Header */
.summary-header {
    padding: 15px !important; /* Override card-panel padding */
    margin-bottom: 20px;
    border: 1px solid #b2dfdb; /* Teal border */
}

.summary-header h6 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00796b; /* Darker Teal */
}

.summary-header p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.file-upload .modal-footer .btn-flat {
    color: var(--primary-text-color);
}

.file-upload .modal-footer .btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#notes-modal {
    width: 600px;
    padding: 12px;
}

#notes-modal a {
    padding: 0 !important;
}

#notes-modal .pagination .active {
    display: inline-table !important;
}

/*
--------------------------------------------------------------------------------
  Clock-In Modal Styles (Standard MaterializeCSS Modal)
--------------------------------------------------------------------------------
  - Styles for a standard, non-fullscreen "Clock In" modal.
  - Assumes MaterializeCSS handles base modal positioning and overlay.
  - Relies on your MaterializeCSS theme for component colors (e.g., 'btn'
    picking up primary theme color) and utility classes (e.g., 'red lighten-5',
    'blue-text') applied in your HTML.
  - Focuses on clean layout, modern styling for elements within the modal.
--------------------------------------------------------------------------------
*/

/* --- Standard Modal Container (#login-modal) --- */
/* Let Materialize JS handle most of these, but we can suggest a good width. */
#login-modal {
    max-width: 580px; /* Accommodates 480px video + padding comfortably */
    width: 90%; /* Responsive for smaller screens */
    border-radius: 8px; /* Softer, modern corners for the modal itself */
    /* Materialize JS typically handles top, left, transform, and z-index for centering.
       If you need to force a higher z-index: z-index: 1003; */
    /* Ensure overflow is visible if content needs to scroll and modal has fixed height from JS */
    overflow: visible !important; /* Override Materialize's overflow:hidden if it clips shadows/content */
}

/* Styling for the direct content area within the modal */
#login-modal .modal-content {
    padding: 24px 28px 16px 28px !important; /* Generous padding */
    display: flex;
    flex-direction: column; /* Stack children (subtitle, video, buttons) vertically */
    align-items: center; /* Horizontally center the stack of children */
    /* overflow-y: auto; -- Materialize usually handles this if content exceeds max-height */
    text-align: center; /* Center text like the subtitle */
}

/* --- Modal Header (If your tc:modal generates one and needs specific styling) --- */
/* This is often part of .modal-content or a separate sibling.
   If tc:modal creates a distinct header, style it here. Example: */
#login-modal .modal-header-class-from-tc-modal { /* Replace with actual class */
    padding: 16px 28px;
    border-bottom: 1px solid #e0e0e0; /* Materialize default divider */
    text-align: left; /* Or center, per design */
}

#login-modal .modal-header-class-from-tc-modal h4 { /* Adjust for actual title element */
    margin: 0;
    font-size: 1.75rem;
    font-weight: 500;
    /* color: #333; Apply Materialize text color class in HTML */
}

/* Subtitle Styling (assuming it's the first <p> in .modal-content) */
#login-modal .modal-content > p:first-child {
    /* color: #757575; -- Use "grey-text text-darken-1" or similar in HTML */
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px; /* Space below subtitle before video */
    max-width: 90%; /* Keep subtitle line length readable */
}

/* --- Video and Captured Image Styling --- */
#login-modal #video,
#login-modal #captured-image {
    display: block;
    width: 60%;
    margin-left: 20%;
    max-width: 400px; /* Max width of the media area */
    height: auto;
    border-radius: 6px; /* Slightly softer corners for media */
    margin-bottom: 20px; /* Space below video/image */
    background-color: #e0e0e0; /* Placeholder, Materialize 'grey lighten-2' */
    border: 1px solid #ccc; /* Softer border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

#login-modal #captured-image {
    object-fit: cover;
}

#login-modal .modal-content {
    padding-top: 0 !important;
}

#login-modal .modal-header {
    padding-bottom: 0 !important;
}

/* --- Button Styling --- */
/* Container for your custom buttons inside .modal-content */
#login-modal .modal-content .camera-actions {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller widths */
    justify-content: center;
    gap: 12px; /* Space between buttons */
    width: 100%; /* Take full width to center buttons */
    margin-top: 10px; /* Space above the buttons */
    margin-bottom: 10px; /* Space below the buttons */
}

/* General styling for buttons you add within .modal-content */
#login-modal .modal-content .btn {
    min-width: 150px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 20px; /* Modern rounded buttons */
    padding: 0 24px;
    height: 40px;
    line-height: 40px;
    transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out;
    /* Materialize .btn class should apply theme's primary color by default.
       It also applies default box-shadow. */
}

#login-modal .modal-content .btn:hover {
    /* Materialize SASS usually darkens themed buttons on hover.
       If more emphasis is needed, or for non-themed buttons: */
    filter: brightness(92%);
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}


/* --- Error and Message Styling --- */
/* Ensure these messages are also centered if they are direct children of .modal-content's flex container */
#login-modal #error-component,
#login-modal #picture-taken-message {
    width: 100%;
    max-width: 480px; /* Match video/image width for consistency */
    padding: 16px;
    border-radius: 6px;
    margin-top: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: left; /* Align text to left within the message box for readability */
}

/* Apply Materialize color classes in HTML for backgrounds and borders: */
/* e.g., #error-component class="red lighten-5 border red lighten-3" */
/* e.g., #picture-taken-message class="green lighten-5 border green lighten-3" */

#login-modal #error-component h5,
#login-modal #picture-taken-message p {
    margin-top: 0;
    margin-bottom: 8px; /* Space for p, or between icon and text for h5 */
    font-size: 1.05rem; /* Consistent font size for message titles/text */
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Apply Materialize text color classes in HTML: */
/* e.g., #error-component h5 class="red-text text-darken-2" */
/* e.g., #picture-taken-message p class="green-text text-darken-1" */

#login-modal #error-component h5 .material-icons,
#login-modal #picture-taken-message p .material-icons {
    margin-right: 10px;
    font-size: 1.3rem; /* Slightly larger icon */
    line-height: 1; /* Ensure icon aligns well with text */
}

#login-modal #error-component p { /* For the secondary text in error component */
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: normal;
    /* color: #757575; -- Apply "grey-text text-darken-1" in HTML */
}

/* --- Modal Footer (where the main "Clock In" button from tc:modal likely is) --- */
#login-modal .modal-footer {
    padding: 12px 24px;
    /* background-color: #f5f5f5; -- Use "grey lighten-4" class in HTML if tc:modal allows */
    border-top: 1px solid #e0e0e0;
    text-align: right; /* Default Materialize footer button alignment */
    border-bottom-left-radius: 8px; /* Match modal's border-radius */
    border-bottom-right-radius: 8px; /* Match modal's border-radius */
}

/* Style the buttons in the modal-footer if needed,
   though tc:modal okText button should already be a .btn */
#login-modal .modal-footer .btn {
    margin-left: 8px; /* Space between multiple footer buttons */
    border-radius: 20px; /* Consistent rounded buttons */
    padding: 0 24px;
    height: 40px;
    line-height: 40px;
}

/* --- Utility for hidden elements (if needed) --- */
.visually-hidden {
    display: none !important;
}

/**
Leave
 */

.validation-message-container {
    justify-content: center; /* Center the content (icon + text) horizontally */
    align-items: center; /* Align the content (icon + text) vertically */
    padding: 12px 8px; /* Add some padding for better spacing */
    gap: 8px; /* Space between the icon and the text */
}

#leave-validation {
    margin-left: auto;
    margin-right: auto;
}

.adv.progress:has(.determinate) {
    height: 25px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.adv.progress .determinate {
    background-color: #4CAF50;
    height: 100%;
    transition: width 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adv.progress .determinate span {
    color: white;
    font-weight: bold;
}


/*****************************************
* Chips in tables style *
*****************************************/
/* Generic styles for columns containing chips (e.g., roles, permissions) */
.app-chips-column {
    white-space: normal !important;
    line-height: 1.4 !important;
    vertical-align: top !important;
    padding: 8px !important;
    overflow: hidden; /* Ensures content doesn't spill out */
}

/* Base style for all custom application chips */
/* This works in conjunction with Materialize's built-in '.chip' class */
.app-chip {
    margin: 2px 2px 2px 0 !important;
    font-size: 11px !important;
    padding: 0 8px !important;
    height: 24px !important;
    line-height: 24px !important;
    display: inline-block;
}

/* Specific style for the "+X more" chip */
.app-chips-column .more-chip {
    font-style: italic;
    background-color: #e0e0e0; /* A light grey background */
    color: #666; /* Darker grey text */
    cursor: help; /* Indicate it's interactive for more info */
}

/* Custom tooltip for the entire column (shows all items) */
.app-column-tooltip {
    position: absolute;
    background: rgba(33, 33, 33, 0.95); /* Dark, semi-transparent background */
    color: white;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999; /* Ensure it's on top */
    max-width: 350px; /* Slightly wider to accommodate more info */
    font-size: 12px;
    line-height: 1.4;
    pointer-events: none; /* Allows clicks to pass through to elements behind if not hovered */
    opacity: 0;
    animation: tooltipFadeIn 0.2s forwards; /* Smooth fade-in animation */
}

.app-column-tooltip-header {
    font-weight: bold;
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Separator for the header */
}

/* Container for each individual item within the tooltip (e.g., for each role) */
.app-column-tooltip-item-container {
    margin-bottom: 8px;
    padding-bottom: 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1); /* Subtle separator between roles */
}
.app-column-tooltip-item-container:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; /* No border for the last item */
}

.app-column-tooltip-role-name {
    font-weight: bold;
    margin-bottom: 4px;
    color: #a7ffeb; /* A light, contrasting color for role names */
}

.app-column-tooltip-role-permissions {
    margin-top: 4px;
}


/* Style for chips *within* the column-level tooltip (e.g., permissions within a role) */
.app-column-tooltip-sub-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2); /* Light background for chips within tooltip */
    padding: 2px 6px;
    margin: 1px 2px 1px 0;
    border-radius: 2px;
    font-size: 10px; /* Slightly smaller for nested chips */
    line-height: 1; /* Adjust line height for smaller chips */
    white-space: nowrap; /* Prevent breaking */
}

.app-column-tooltip-sub-chip-empty {
    font-style: italic;
    color: #ccc;
    font-size: 10px;
}


/* Hover effect for the entire column */
.app-chips-column:hover {
    background-color: rgba(0,0,0,0.02); /* Subtle highlight on hover */
}

/* Animation for the tooltip */
@keyframes tooltipFadeIn {
    to { opacity: 1; }
}

/* Specific styles for .permissions-column or .role-column if needed */
.permissions-column {
    /* Example: Add specific border or background if needed for permissions */
}

.role-column {
    /* Example: Add specific text color or font weight if needed for roles */
}

/* If you need specific styling for chips *within* these columns, you can do: */
.permissions-column .permission-chip {
    /* Example: Specific color for permission chips */
    background-color: #ffe0b2; /* Light orange */
    color: #e65100; /* Dark orange text */
}

.role-column .role-chip {
    /* Example: Specific color for role chips */
    background-color: #e8f5e9; /* Light green */
    color: #2e7d32; /* Dark green text */
}


/**
Notes styling
 */

/* Wrapper for the entire comment block for padding and positioning */
.comment-wrapper {
    position: relative; /* Needed for positioning the delete icon */
    padding: 12px 16px;
    border-left: 3px solid #42a5f5; /* A nice blue accent color */
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    border-radius: 4px;
    margin: 4px; /* Optional margin if inside a cell */
}

/* Header containing user name and date */
.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9em;
}

/* User's name */
.comment-user {
    font-weight: 600; /* Bolder text */
    color: #343a40;
}

/* Timestamp */
.comment-date {
    color: #6c757d; /* Lighter grey for the date */
    font-size: 0.85em;
    margin-left: 8px;
    margin-right: 12px;
}

/* The actual comment text */
.comment-content {
    color: #495057;
    word-wrap: break-word; /* Ensures long text doesn't overflow */
}

/* Delete icon styling */
.delete-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    color: #adb5bd; /* Subtle grey */
    font-size: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* Hover effect for the delete icon */
.delete-icon:hover {
    color: #e53935; /* A strong red on hover */
    transform: scale(1.15); /* Slightly enlarge on hover */
}

/* Styling for the detected hyperlinks */
.comment-link {
    color: #0d6efd; /* Standard bootstrap link blue */
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
}

.comment-link:hover {
    color: #0a58ca; /* Darker blue on hover */
}

.selection-start {
    background-color: #ffd29e !important; /* A distinct color for the start date */
    border-radius: 50%;
}



/* --- Compact FullCalendar Styles --- */

/* Reduce the font size of the month titles (e.g., "September") */
.fc-multimonth-title {
    font-size: 1.1em !important;
    font-weight: 600 !important;
}

/* Reduce padding and font size of the day headers (Sun, Mon, Tue) */
.fc .fc-col-header-cell-cushion {
    font-size: 0.8em;
    padding: 4px;
}

/* Reduce the height of the day cells */
.fc .fc-daygrid-day-frame {
    min-height: auto; /* Allow the cell to shrink */
    padding: 2px !important;
}

/* Reduce the font size of the day numbers */
.fc .fc-daygrid-day-number {
    font-size: 0.85em;
    padding: 4px;
}

/* Reduce space around the main view */
.fc {
    max-width: 1100px;
    margin: 0 auto;
}