body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: white;
    line-height: 1.6;
    color: #4a4a4a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background-color: #5f3be1;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.top-bar a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
}

.top-bar a.active {
    font-weight: 700;
}

.navbar {
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
}

.navbar-nav {
    margin-left: 20px;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: #5f3be1;
}

.login-btn {
    padding: 10px 20px;
    background-color: #ebebff;
    color: #5f3be1;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-container {
    height: 4px;
    background: #f3f3f3;
    width: 100%;
    position: fixed;
    top: 60px;
    /* Adjusted for initial top bar height */
    z-index: 9999;
    display: none;
    /* Initially hidden */
}

.progress-bar {
    height: 4px;
    background: #5f3be1;
    width: 0%;
}

/* Main section styles */
.main-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Ensure proper alignment of main content and image */
.main-content {
    max-width: 600px;
    text-align: left;
    margin-left: 20px;
    flex: 1;
}

.main-content h1 {
    font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
    font-weight: 700;
    color: #2e2e2e;
}

.main-image {
    max-width: 600px;
    flex: 1;
}

.main-image img {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-content {
        width: 100%;
        margin-left: 0;
    }

    .main-content h1 {
        font-size: 2em; /* Adjust font size for smaller screens */
    }
}


.main-content p {
    font-size: 18px;
    margin: 20px 0;
}

.main-content ul {
    list-style: none;
    padding: 0;
}

.main-content ul li {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.main-content ul li::before {
    content: "✔";
    color: #5f3be1;
    margin-right: 10px;
}

/* Collaboration badge styling */
.course-badges {
    margin-bottom: 0.5rem;
}

.course-badges .badge {
    margin-right: 0.25rem;
}

.collaboration-badge {
    background-color: #17a2b8;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.75rem;
}

.program-category-badge.collaboration-badge,
.course-badges .collaboration-badge {
    margin-right: 0.25rem;
}

.main-buttons {
    display: flex;
    gap: 20px;
}

.main-buttons a {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}

.get-started {
    background-color: #5f3be1;
    color: white;
}

.main-image {
    max-width: 600px;
}

.main-image img {
    width: 100%;
}

@media (max-width: 768px) {
    .main-image {
        display: none;
    }

    .navbar {
        padding: 20px 15px;
    }

    .nav-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.partner-section {
    background: linear-gradient(to right, #5f3be1, #3a1c71);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.partner-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.partner-section .highlight {
    font-size: 36px;
    font-weight: bold;
    color: #f0f0ff;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logos img {
    margin: 20px;
    max-height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-logos img:hover {
    opacity: 1;
}

.solutions-section {
    background: #f9f9ff;
    padding: 60px 20px;
    text-align: center;
}

.solutions-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2e2e2e;
}

.solutions-section .subtitle {
    font-size: 16px;
    color: #5f3be1;
    margin-bottom: 40px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 25px;
    background: #ebebff;
}

.solution-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 20px;
}

.solution-content img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.solution-content h3 {
    font-size: 24px;
    color: #2e2e2e;
    margin-bottom: 10px;
}

.solution-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-section {
    background: #5f3be1;
    padding: 40px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin: 20px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    min-width: 190px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-buttons .cta-primary {
    background-color: #ffffff;
    color: #5f3be1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-buttons .cta-primary:hover {
    color: #3d23a7;
    transform: translateY(-2px);
}

.cta-buttons .cta-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
    background-color: transparent;
}

.cta-buttons .cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer {
    background: #f9f9ff;
    padding: 60px 20px 0 20px;
    /* Adjusted padding */
    text-align: left;
    margin-top: auto;
}

.footer .footer-column {
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p,
.footer a {
    font-size: 14px;
    color: #4a4a4a;
    text-decoration: none;
}

.footer p {
    margin-bottom: 10px;
}

.footer a:hover {
    text-decoration: underline;
    color: #5f3be1;
}

.footer .text-center {
    background-color: #5f3be1;
    padding: 20px;
    color: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
}

.footer .text-center p {
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #5f3be1;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-content label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.modal-content input[type="text"],
.modal-content input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content .forgot-password {
    display: block;
    margin-bottom: 20px;
    color: #5f3be1;
    text-decoration: none;
}

.modal-content input[type="submit"] {
    background-color: #5f3be1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Side navigation menu styles */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background-color: white;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
}

.sidenav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    color: #4a4a4a;
    display: block;
    transition: 0.3s;
}

.sidenav a.active {
    font-weight: bold;
    color: #5f3be1;
}

.sidenav a:hover {
    color: #5f3be1;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.openbtn {
    font-size: 24px;
    cursor: pointer;
    background-color: transparent;
    color: #5f3be1;
    border: none;
    padding: 10px 15px;
    margin-left: 15px;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .login-btn {
        margin-right: 15px;
        background-color: white;
        color: #5f3be1;
    }

    .navbar-brand {
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .desktop-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .mobile-menu {
        display: none;
    }
}

.main-content .highlight {
    background-color: #ebebff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 25px;
    color: #5f3be1;
    font-weight: 500;
    margin-bottom: 20px;
}

.partner-section {
    background: linear-gradient(to right, #5f3be1, #3a1c71);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    font-size: 24px;
    font-weight: 500;
}

.core-features-section {
    background: #f9f9ff;
    padding: 60px 20px;
    text-align: left;
    width: 100%;
}

.core-features-section .highlight {
    background-color: #ebebff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 25px;
    color: #5f3be1;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}

.core-features-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2e2e2e;
    text-align: left;
}

.core-features-section .feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.core-features-section .feature-item {
    flex: 1 1 45%;
}

.core-features-section .feature-item h3 {
    font-size: 24px;
    color: #2e2e2e;
    margin-bottom: 10px;
}

.core-features-section .feature-item p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.core-features-section .main-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 20px;
}

.core-features-section .main-buttons .get-started {
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    background-color: #5f3be1;
    color: white;
}

.core-features-section .core-features-image {
    width: 50%;
    margin-top: 20px;
}

.core-features-section .core-features-image img {
    width: 100%;
}

    .core-features-section .core-features-image {
        display: none;
    }

    @media (min-width: 768px) {
        .core-features-section .core-features-image {
            display: block;
        }
    }

    @media (max-width: 767px) {
        .core-features-section .feature-item {
            flex: 1 1 100%;
            text-align: left;
        }
    }

    .highlight {
        background-color: #ebebff;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 25px;
        color: #5f3be1;
        font-weight: 500;
        margin-bottom: 20px;
    }
    
    .services-section {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: left;
        overflow: hidden;
    }
    
    .services-section h1 {
        font-size: 48px;
        font-weight: 700;
        color: #2e2e2e;
        text-align: center;
    }
    
    .services-section .tab-content {
        padding-top: 20px;
    }
    
    .tab-pane h2 {
        font-size: 36px;
        font-weight: 700;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .tab-pane p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .tab-pane ul {
        list-style: none;
        padding: 0;
        column-count: 2;
        column-gap: 40px;
        overflow: hidden;
        max-width: 100%;
    }
    
    .tab-pane ul li {
        font-size: 18px;
        margin: 10px 0;
        display: flex;
        align-items: center;
    }
    
    .tab-pane ul li::before {
        content: "✔";
        color: #5f3be1;
        margin-right: 10px;
    }
    
    .tab-pane .main-buttons {
        display: flex;
        gap: 20px;
    }
    
    .tab-pane .get-started {
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        text-align: center;
        background-color: #5f3be1;
        color: white;
    }
    
    @media (max-width: 767px) {
        .tab-pane ul {
            column-count: 1;
        }
    
        .services-section h1,
        .tab-pane h2 {
            font-size: 24px;
        }
    
        .tab-pane p,
        .tab-pane ul li {
            font-size: 16px;
        }
    }

    footer.footer {
        position: relative;
        z-index: 1000;
    }
footer.footer a {
    pointer-events: auto;
}

/* Analytics skeleton loading states */
.analytics-loading-stage {
    position: relative;
}

.analytics-loading-stage .analytics-loading-target {
    transition: opacity 0.2s ease;
}

.analytics-loading-stage .skeleton-layer,
.chart-skeleton,
.chart-panel-list-skeleton {
    display: none;
}

.analytics-loading-stage.is-loading .analytics-loading-target {
    opacity: 0;
    visibility: hidden;
}

.analytics-loading-stage.is-loading .skeleton-layer {
    display: block;
}

.analytics-loading-stage.is-loading .analytics-kpi-grid.skeleton-layer {
    display: grid;
}

.analytics-loading-stage.is-loading .chart-skeleton {
    display: block;
}

.analytics-loading-stage.is-loading .chart-panel-list-skeleton {
    display: grid;
}

.chart-panel-list-skeleton {
    gap: 12px;
}

.chart-panel-list-skeleton__row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.chart-panel-list-skeleton__row .skeleton-line {
    flex: 1;
}

.chart-panel-list-skeleton__row .skeleton-pill {
    flex: 0 0 72px;
}

.skeleton-line,
.skeleton-block,
.skeleton-pill {
    display: block;
    background-color: #e6ebf5;
    position: relative;
    overflow: hidden;
}

.skeleton-line {
    height: 12px;
    border-radius: 999px;
}

.skeleton-line--medium {
    width: 70%;
}

.skeleton-line--long {
    width: 85%;
}

.skeleton-line--full {
    width: 100%;
}

.skeleton-line--short {
    width: 45%;
}

.skeleton-line--large {
    height: 26px;
    border-radius: 12px;
    width: 65%;
}

.skeleton-pill {
    height: 20px;
    border-radius: 999px;
    min-width: 72px;
}

.skeleton-block--chart {
    width: 100%;
    min-height: 260px;
    border-radius: 12px;
}

/* Analytics heatmaps */
.chart-panel-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.chart-panel-controls .form-check {
    margin-bottom: 0;
}
.chart-panel-controls .btn-group .btn {
    min-width: 64px;
}
.heatmap-section-panel {
    border-radius: 16px;
    border: 1px solid #e4e9f2;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
}
.heatmap-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.heatmap-section-titles h2 {
    margin-bottom: 4px;
}
.heatmap-section-subtitle {
    margin: 0;
    color: #6c7a91;
    font-size: 0.9rem;
}
.heatmap-section-body {
    padding-top: 0;
}
.heatmap-section-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2fb;
    margin-bottom: 16px;
}
.heatmap-focus-btn {
    white-space: nowrap;
}
.heatmap-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    padding: 16px 18px;
    background: #f7f9fc;
    border: 1px solid #e1e7f0;
    border-radius: 12px;
    margin-bottom: 18px;
}
.heatmap-toolbar__group {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 180px;
}
.heatmap-toolbar__group label {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0;
    text-transform: none;
}
.heatmap-toolbar__group--xs {
    flex: 0 1 180px;
}
.heatmap-toolbar__group--stack .btn-group {
    flex-wrap: nowrap;
}
.heatmap-toolbar__group .form-control,
.heatmap-toolbar__group .btn-group {
    min-width: 0;
}
.input-icon {
    position: relative;
}
.input-icon .fa {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 12px;
    pointer-events: none;
}
.input-icon input {
    padding-left: 32px;
}
@media (max-width: 767px) {
    .heatmap-section-summary {
        flex-direction: column;
        align-items: flex-start;
    }
    .heatmap-toolbar {
        flex-direction: column;
    }
    .heatmap-toolbar__group,
    .heatmap-toolbar__group--xs {
        width: 100%;
    }
}
.mini-heatmap-panel .btn {
    margin-top: 10px;
}
.mini-heatmap-wrapper {
    width: 100%;
    overflow-x: auto;
}
.mini-heatmap-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 460px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.mini-heatmap-table thead th {
    background: #f7f9fc;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 6px 8px;
    border-bottom: 1px solid #e3e7ef;
    border-right: 1px solid #e3e7ef;
}
.mini-heatmap-table thead th:first-child,
.mini-heatmap-table tbody th {
    text-align: left;
    font-weight: 600;
    padding: 8px;
    border-right: 1px solid #e9edf5;
}
.mini-heatmap-table tbody td {
    padding: 4px;
    min-width: 64px;
    border: 1px solid #f0f3fa;
    background: #fff;
}
.mini-heatmap-chip {
    border-radius: 8px;
    padding: 6px 4px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}
.mini-heatmap-empty {
    font-style: italic;
    color: #8a8f99;
    padding: 8px;
}
.heatmap-scroll-wrapper {
    width: 100%;
    overflow: auto;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}
.heatmap-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
}
.heatmap-table thead th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #f7f9fc;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    padding: 10px 12px;
    border-bottom: 1px solid #e3e7ef;
    border-right: 1px solid #e3e7ef;
    white-space: nowrap;
}
.heatmap-header--corner {
    position: sticky;
    left: 0;
    text-align: left;
    z-index: 3;
}
.heatmap-table tbody th {
    position: sticky;
    left: 0;
    background: #fff;
    font-weight: 600;
    padding: 10px 12px;
    border-right: 1px solid #e9edf5;
    white-space: nowrap;
    z-index: 1;
}
.heatmap-table tbody td {
    padding: 6px;
    min-width: 88px;
    text-align: center;
    border: 1px solid #f0f3fa;
    background: #fff;
}
.heatmap-table tbody tr:nth-child(2n) td {
    background: #fbfcff;
}
.heatmap-cell {
    border-radius: 6px;
    padding: 8px 6px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.heatmap-table tbody td:hover .heatmap-cell {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(39, 52, 75, 0.08);
}
.heatmap-cell-empty .heatmap-cell {
    background: #f1f3f8 !important;
    color: #5f6b7c !important;
    font-weight: 500;
}
.heatmap-client-meta {
    font-size: 11px;
    color: #6c757d;
    margin-top: 2px;
}
.heatmap-skill-name {
    font-size: 13px;
    font-weight: 600;
}
.heatmap-grid__empty {
    padding: 12px;
    font-style: italic;
    color: #8a8f99;
}
.heatmap-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}
.heatmap-legend .legend-gradient {
    flex: 1;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f1416c, #f6c343, #1abb9c);
}
.heatmap-legend--diverging .legend-gradient {
    background: linear-gradient(90deg, #3b82f6, #f4f6f8, #f97316);
}
.heatmap-focus-notice {
    margin-bottom: 10px;
}
.heatmap-footnote {
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
}
.attendance-bin-grid {
    display: grid;
    gap: 12px;
}
.attendance-bin-card {
    border: 1px solid #e7ecf5;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(23, 43, 77, 0.08);
}
.attendance-bin-card.is-empty {
    opacity: 0.75;
    background: #f8fafc;
}
.attendance-bin-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #5a6270;
}
.attendance-bin-value {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}
.attendance-bin-meta {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 4px;
}
.attendance-bin-count {
    font-size: 12px;
    color: #8a8f99;
}
.attendance-footnote {
    margin-top: 10px;
    font-size: 12px;
    color: #6c757d;
}

.skeleton-block--sparkline {
    width: 100%;
    height: 48px;
    border-radius: 8px;
}

.skeleton-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton-shimmer::after {
        animation: none;
        transform: translateX(0);
    }
}

/* Sidebar child menu overrides */
.nav-md ul.nav.child_menu li:before,
.nav-md ul.nav.child_menu li:after {
    display: none;
}
