﻿:root {
    --primary-color: #E63E42;
    --secondary-color: #366ab5;
    --dark-color: #212529;
    --light-bg: #f8f9fa;
    --bs-navbar-padding-y: 0.8rem;
    --light-gray: #f5f5f5;
    --light-bg-blue: #f2f8fd;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Navigation */

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.9375rem;
    color: var(--dark-color) !important;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
}

/* Reduce space between logo and first nav item */
.navbar-nav .nav-item:first-child .nav-link {
    margin-left: 0;
}

/* Right align navbar items on desktop */
.navbar-nav {
    margin-left: auto !important;
}

/* Revert to auto margin on mobile when navbar collapses */
@media (max-width: 991px) {
    .navbar-nav {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Hide dropdown menu and chevron on mobile - make Modules a simple link */
    .nav-item.dropdown .dropdown-menu {
        display: none !important;
    }

    .nav-item.dropdown .chevron {
        display: none !important;
    }

    /* Disable hover behavior on mobile */
    .nav-item.dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }

    .navbar-nav .nav-link {
        margin-left: 0px !important;
    }
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Hide Bootstrap's default dropdown toggle caret */
.nav-link.dropdown-toggle::after {
    display: none;
}

/* Chevron Icon */
.nav-link .chevron {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-link .chevron {
    transform: rotate(180deg);
}

.nav-item.dropdown.show .nav-link .chevron {
    transform: rotate(180deg);
}

/* Hover effect - gray out non-hovered items */
.navbar-nav:hover .nav-link {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.dropdown:hover .nav-link {
    opacity: 1;
}

/* Dropdown Item Styles */
.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    margin-bottom: 0.25rem;
}

    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: var(--primary-color);
    }

.dropdown-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.dropdown-icon {
    font-size: 1.25rem !important;
    margin-right: 0.75rem;
    color: var(--secondary-color);
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.dropdown-item-description {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.4;
    padding-left: 2rem;
}

.dropdown-divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 1rem 0;
}

.dropdown-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-medallion {
    position: absolute;
    right: calc((100% - 1140px) / 2 - 50px); /* Align with container edge matching navbar, shifted 50px right */
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: auto;
    opacity: 0;
    z-index: 1;
    animation: fadeInMedallion 1s ease-out 0.5s forwards;
}

@media (max-width: 1400px) {
    .hero-medallion {
        right: calc((100% - 1140px) / 2 - 50px);
    }
}

@media (max-width: 1200px) {
    .hero-medallion {
        right: calc((100% - 960px) / 2 - 50px);
    }
}

@media (max-width: 992px) {
    .hero-medallion {
        right: calc((100% - 720px) / 2 - 50px);
    }
}

@keyframes fadeInMedallion {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.10;
    }
}

@keyframes fadeInMedallionCompact {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.50;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-medallion {
        right: calc((100% - 540px) / 2 - 50px);
        width: 450px; /* Reduce size on smaller screens */
    }
}

@media (max-width: 576px) {
    .hero-medallion {
        right: -30px; /* Allow partial overflow on mobile */
        width: 350px; /* Further reduce size on mobile */
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateY(90px);
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(90px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

    .hero-subtitle > div {
        margin-bottom: 0.5rem;
    }

    .hero-subtitle .bi-check2-square {
        color: var(--secondary-color);
        margin-right: 0.5rem;
    }

    /* Compact Hero Section */
.hero-compact-section {
    /* background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%); */
    background: linear-gradient(135deg, #dc3545 35%, #e9ecef 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-compact-medallion {
    position: absolute;
    right: calc((100% - 1140px) / 2 - 65px);
    top: 50%;
    transform: translateY(-50%);
    width: 165px;
    height: auto;
    opacity: 0.50;
    z-index: 1;
}

@media (max-width: 1400px) {
    .hero-compact-medallion {
        right: calc((100% - 1140px) / 2);
    }
}

@media (max-width: 1200px) {
    .hero-compact-medallion {
        right: calc((100% - 960px) / 2);
    }
}

@media (max-width: 992px) {
    .hero-compact-medallion {
        right: calc((100% - 720px) / 2);
        width: 180px;
    }
}

@media (max-width: 768px) {
    .hero-compact-medallion {
        right: calc((100% - 540px) / 2);
        width: 150px;
    }
}

@media (max-width: 576px) {
    .hero-compact-medallion {
        right: 5px;
        width: 120px;
        opacity: .25;
    }
}

.hero-compact-section .container {
    position: relative;
    z-index: 2;
}

.hero-compact-content {
    opacity: 1;
}

.hero-compact-title {
    font-size: 1.875rem;
    font-weight: 700;
    /* color: var(--dark-color); */
    color: white;
    margin-bottom: 0.75rem;
}

.hero-compact-subtitle {
    font-size: 1.125rem;
    /* color: #6c757d; */
    color: white;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero-compact-title {
        font-size: 1.5rem;
    }

    .hero-compact-subtitle {
        font-size: 1rem;
    }
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s;
}

    .btn-primary-custom:hover {
        background-color: #c82333;
        border-color: #bd2130;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
    }

.btn-outline-custom,
.btn-outline-custom-sm {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-custom {
    padding: 0.75rem 2rem;
}

.btn-outline-custom-sm {
    padding: 0.5rem 1rem;
}

.btn-outline-custom:hover,
.btn-outline-custom-sm:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-outline-custom:hover {
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.btn-outline-custom-sm:hover {
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
    transform: translateY(-1px);
}

/* Section Styling */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trusted By Section */
.trusted-by-section {
    padding: 2rem 0;
    background-color: white;
}

.trusted-by-title {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agency-logos-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.agency-logo-item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    min-width: 150px;
    position: relative;
}

    .agency-logo-item img {
        max-height: 100px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
        cursor: default;
        position: relative;
        z-index: 1;
    }

        .agency-logo-item img:hover {
            transform: scale(1.25);
            z-index: 10;
        }

@media (max-width: 768px) {
    .agency-logos-container {
        justify-content: center;
        gap: 1rem;
    }

    .agency-logo-item {
        flex: 0 1 auto;
        padding: 0.5rem;
        min-width: 120px;
    }

        .agency-logo-item img {
            max-height: 80px;
        }
}

/* Challenge & Solutions Section */
.challenge-solutions-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.challenge-solutions-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
}

.challenge-content {
    flex: 0 0 35%;
    padding-right: 2rem;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
}

.challenge-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.challenge-description {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solutions-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.solution-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

    .solution-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
        border-color: var(--secondary-color);
    }

.solution-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.solution-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 0.75rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.solution-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .solution-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: #6c757d;
        font-size: 0.95rem;
        line-height: 1.4;
    }

        .solution-features li:before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }

.solution-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .solution-link:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .solution-link i {
        margin-left: 0.5rem;
        font-size: 0.8rem;
    }

@media (max-width: 992px) {
    .challenge-solutions-container {
        flex-direction: column;
        gap: 3rem;
    }

    .challenge-content {
        flex: 1;
        padding-right: 0;
        position: relative;
        top: auto;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .challenge-title {
        font-size: 1.1rem;
    }
}

/* Feature Tabs */
.feature-section {
    padding: 4rem 0;
    background-color: #fafafa;
}

.feature-container {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.nav-tabs {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    justify-content: flex-start;
    margin-bottom: 0;
    background: white;
    position: relative;
    padding: 0;
}

    .nav-tabs .nav-link {
        color: #9ca3af;
        font-weight: 500;
        padding: 1.25rem 2rem;
        margin: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        position: relative;
        transition: color 0.3s ease;
        border-right: 1px solid #e5e5e5;
    }

        .nav-tabs .nav-link:last-child {
            border-right: none;
        }

        .nav-tabs .nav-link:hover {
            color: #4b5563;
            background: transparent;
        }

        .nav-tabs .nav-link.active {
            color: #111827;
            background: transparent;
            font-weight: 600;
        }

    /* Sliding underline */
    .nav-tabs::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        background: #111827;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: var(--tab-width, 0);
        transform: translateX(var(--tab-offset, 0));
    }

    /* Gray out non-active tabs when hovering */
    .nav-tabs:hover .nav-link:not(:hover):not(.active) {
        opacity: 0.5;
        transition: opacity 0.3s ease;
    }

.tab-content {
    padding: 0;
    background-color: white;
    border-radius: 0;
}

.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .tab-pane.show.active {
        opacity: 1;
    }

/* Tab content layout */
.tab-content-inner {
    display: flex;
    min-height: 400px;
    padding: 3rem;
}

.tab-description {
    flex: 0 0 35%;
    padding-right: 3rem;
}

.tab-screenshot {
    flex: 0 0 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

    .tab-screenshot img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

.tab-description h3 {
    display: flex !important;
    align-items: center;
    margin-bottom: 1rem;
}

    .tab-description h3 .feature-icon {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-right: 1rem;
        flex-shrink: 0;
        display: inline-block;
    }

/* Material Symbols styling */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    vertical-align: middle;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

    .feature-list li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: #6b7280;
    }

        .feature-list li:before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1rem;
        }

/* Integrations Section */
.integrations-section {
    background-color: var(--light-bg);
    padding: 2rem 0 3rem;
}

.integrations-carousel-container {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.integrations-header {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 1rem 2rem;
    z-index: 10;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    min-width: 200px;
    box-shadow: 5px 0 15px -5px rgba(255,255,255,1);
}

.integrations-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 2rem;
    margin-left: 200px;
    mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 90%, transparent);
}

.integrations-track {
    display: flex;
    animation: scroll-left 47s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.integration-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 1rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 80px;
    width: 160px;
}

    .integration-logo img {
        max-height: 50px;
        max-width: 130px;
        width: auto;
        height: auto;
        object-fit: contain;
        opacity: 0.9;
    }

.integrations-carousel-container .btn-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .integrations-carousel-container .btn-link:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .integrations-carousel-container .btn-link i {
        font-size: 0.85rem;
        vertical-align: middle;
        margin-left: 0.25rem;
    }

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

    .footer h5 {
        color: white;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            padding: 0.25rem 0;
        }

    .footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: color 0.3s;
    }

        .footer a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid #495057;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #adb5bd;
}

/* Modules Page Navigation */
.modules-sidebar {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.5rem;
    top: 100px;
}

.modules-nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e5e5;
}

.modules-sidebar .nav {
    gap: 0.25rem;
}

.modules-sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #6c757d;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.modules-sidebar .nav-link .material-symbols-outlined {
    font-size: 1.5rem;
    margin-right: 0.75rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.modules-sidebar .nav-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.modules-sidebar .nav-link.active {
    background-color: #e3f2fd;
    color: var(--secondary-color);
    font-weight: 600;
    border-left-color: var(--secondary-color);
}

.modules-sidebar .nav-link.active .material-symbols-outlined {
    color: var(--secondary-color);
}

/* Modules Content Area */
.modules-content {
    max-height: calc(100vh - 350px);
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 1rem;
}

.module-section {
    padding: 2rem 0;
    margin-bottom: 3rem;
    min-height: 400px;
}

.module-section:last-child {
    margin-bottom: 0;
}

.module-section h2 {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.module-section h2 .material-symbols-outlined {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.module-section .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.module-section p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Scrollbar styling for modules content */
.modules-content::-webkit-scrollbar {
    width: 8px;
}

.modules-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modules-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modules-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 991px) {
    .modules-sidebar {
        position: relative !important;
        top: auto !important;
        margin-bottom: 2rem;
    }

    .modules-content {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .nav-tabs {
        flex-direction: column;
    }

    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        margin: 0;
        font-size: 0.9rem;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        text-align: left;
    }

    .nav-tabs .nav-link:last-child {
        border-bottom: none;
    }

    .nav-tabs::after {
        display: none;
    }

    .tab-content-inner {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    .tab-description {
        flex: 1;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .tab-screenshot {
        flex: 1;
    }

    .module-section h2 {
        font-size: 1.5rem;
    }

    .module-section h2 .material-symbols-outlined {
        font-size: 2rem;
    }

    .modules-sidebar .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .modules-sidebar .nav-link .material-symbols-outlined {
        font-size: 1.25rem;
        margin-right: 0.5rem;
    }
}
