:root {
    --font-main: 'Inter', sans-serif;
    --bg-color: #0F172A;
    --sidebar-bg: #111827;
    --sidebar-hover: #1F2937;
    --text-dark: #F8FAFC;
    --text-muted: #f8fafc;
    --text-light: #f8fafc;
    --primary: #38BDF8;
    --primary-hover: #0EA5E9;
    --accent: #10B981;
    --card-bg: rgba(30, 41, 59, 0.8);
    --border: rgba(255, 255, 255, 0.07);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ------------------- LANDING PAGE ------------------- */
.landing-container {
    min-height: 100vh;
    background: radial-gradient(circle at 50% 0%, #1E293B 0%, #0F172A 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 1rem;
    position: relative;
    overflow-x: hidden;
}

.hero-section {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    margin-bottom: 4rem;
}

.hero-pre-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #f8fafc;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, #38BDF8, #2DD4BF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(45deg, #38BDF8, #2DD4BF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f8fafc;
    margin-bottom: 2rem;
    animation: fadeIn 1.2s ease-out;
}

.btn-primary {
    background: linear-gradient(135deg, #0EA5E9, #3B82F6);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(14, 165, 233, 0.5);
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    z-index: 10;
}

.phase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.phase-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #38BDF8;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.phase-icon {
    font-size: 2rem;
    color: #38BDF8;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 1rem;
    font-weight: 600;
    color: #F8FAFC;
}

/* ------------------- DASHBOARD LAYOUT ------------------- */
.dashboard-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* SIDEBAR */
.sidebar {
    width: 280px;
    background: radial-gradient(circle at 0% 0%, #1E293B 0%, #0F172A 100%);
    color: white;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #1E293B;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 50;
    flex-shrink: 0;
    position: relative;
    height: 100vh;
    transition: width 0.3s ease;
}

.sidebar.collapsed {
    width: 60px;
    overflow: visible;
}

.sidebar.collapsed .menu-item span,
.sidebar.collapsed .menu-section-title,
.sidebar.collapsed .sidebar-header h2,
.sidebar.collapsed .badge,
.sidebar.collapsed .model-name {
    display: none;
}

.sidebar.collapsed .menu-item {
    justify-content: center;
    padding: 0.75rem 0;
}

.sidebar.collapsed .menu-item ion-icon {
    font-size: 1.5rem;
    margin: 0;
}

.sidebar-toggle {
    position: absolute;
    top: 2rem;
    right: -14px;
    width: 28px;
    height: 28px;
    background: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #38BDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: #0f172a;
    border-color: #38BDF8;
    transform: scale(1.1);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.sidebar-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sidebar-logo {
    font-size: 2rem;
    color: var(--primary);
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 1rem 0;
}

.sidebar.collapsed .sidebar-menu {
    overflow: visible;
}

.sidebar-menu::-webkit-scrollbar {
    width: 4px;
}

.sidebar-menu::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #f8fafc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

/* Tooltip arrow pointer */
.sidebar.collapsed .menu-item:hover::before {
    content: '';
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #1E293B;
    z-index: 1001;
    pointer-events: none;
    animation: tooltipFadeIn 0.15s ease-out forwards;
}

/* Tooltip label */
.sidebar.collapsed .menu-item:hover::after {
    content: attr(data-title);
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #F8FAFC;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 1000;
    box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.55),
        0 0 18px rgba(56, 189, 248, 0.15);
    border-left: 3px solid #38BDF8;
    letter-spacing: 0.3px;
    animation: tooltipFadeIn 0.15s ease-out forwards;
    pointer-events: none;
}

.menu-item:hover,
.menu-item.active {
    background-color: #1E293B;
    color: #38BDF8;
    border-left: 3px solid #38BDF8;
}

.menu-item ion-icon {
    font-size: 1.3rem;
}

.menu-sub-items {
    margin-bottom: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.menu-sub-items.expanded {
    max-height: 500px; /* Adjust as needed */
}

.sub-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem 0.5rem 3rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    border-left: 3px solid transparent;
}

.sub-item:hover {
    background-color: rgba(56, 189, 248, 0.05);
    color: #38BDF8;
    border-left: 3px solid #38BDF8;
}

.sub-item.active {
    color: #38BDF8;
    font-weight: 600;
}

.sidebar.collapsed .menu-sub-items {
    display: none;
}

.menu-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #f8fafc;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 1.5rem 1.25rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* AI Models Sidebar Layout Addons */
.model-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.model-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
}

.badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 6px;
    text-transform: uppercase;
}

.badge.available {
    background: rgba(16, 185, 129, 0.2);
    color: #34D399;
}

.badge.purchase {
    background: rgba(245, 158, 11, 0.2);
    color: #FCD34D;
    transition: background 0.3s;
}

.badge.purchase:hover {
    background: rgba(245, 158, 11, 0.4);
}

/* MAIN CONTENT */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

/* TOPBAR */
.topbar {
    min-height: 64px;
    height: auto;
    padding: 10px 2rem;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.topbar-icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.topbar-icons ion-icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.topbar-icons ion-icon:hover {
    color: var(--primary);
}

.topbar-icons.dark-mode ion-icon {
    color: #f8fafc;
}

.topbar-icons.dark-mode ion-icon:hover {
    color: white;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0EA5E9, #38BDF8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* DASHBOARD CONTENT */
.dashboard-scroll {
    flex: 1;
    padding: 2rem;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: var(--bg-color);
    overflow-y: auto;
}

.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.welcome-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.welcome-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 2px solid var(--border);
}

.tab {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
}

.tab.active {
    color: #f8fafc;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #38BDF8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    justify-content: space-between;
    border-bottom: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-info .stat-val {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-info .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.chart-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Custom Donut Chart Mockup */
.donut-chart-container {
    align-self: center;
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donut-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--accent) 0% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.donut-inner {
    width: 60%;
    height: 60%;
    background: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}

.chart-legend {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

/* Custom Bar Chart Mockup */
.bar-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 200px;
    padding-bottom: 20px;
    gap: 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    border-left: 1px solid var(--border);
    padding-left: 10px;
}

.bar-y-axis-label {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    justify-content: flex-end;
    width: 60px;
}

/* Custom Scrollbars for Fixed Layout Panes */
.ldm-scrollpane::-webkit-scrollbar {
    width: 6px;
}

.ldm-scrollpane::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.ldm-scrollpane::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 189, 248, 0.3);
}

.bar-fill {
    width: 100%;
    background-color: #60A5FA;
    border-radius: 4px 4px 0 0;
    display: flex;
    justify-content: center;
    transition: height 1s ease-out;
}

.bar-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 5px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateX(-6px) translateY(-50%);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Phase Dashboard Addons */
.phase-dashboard-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.grid-header-note {
    color: #60A5FA;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.phase-top-boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    padding-bottom: 0.75rem;
}

.phase-top-boxes::-webkit-scrollbar {
    height: 6px;
    display: none;
}

.phase-top-boxes::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.phase-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 41, 59, 0.45);
    color: #f8fafc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.phase-box:hover {
    background: rgba(30, 41, 59, 0.7);
    transform: translateY(-1px);
}

.phase-box.selected {
    background: linear-gradient(180deg, rgba(30,41,59,0.95) 0%, rgba(15,23,42,0.95) 100%);
    border: 1px solid var(--phase-color, #38BDF8);
    border-bottom: 3px solid var(--phase-color, #38BDF8);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.18), 0 6px 14px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    z-index: 10;
}

.phase-box.selected .phase-box-title,
.phase-box.selected ion-icon {
    color: #38BDF8;
    font-weight: 700;
}

.phase-box.selected .phase-box-count {
    color: #38BDF8;
    background: rgba(255, 255, 255, 0.1);
}

.phase-top-boxes .phase-box:not(.selected) {
    opacity: 0.9;
}

.phase-top-boxes .phase-box:not(.selected):hover {
    opacity: 1;
}

.phase-box-title {
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
    margin: 0;
    color: inherit;
    line-height: 1.2;
    padding-right: 5px;
}

.phase-box-count {
    font-size: 0.85rem;
    font-weight: 800;
    color: inherit;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.2rem 0.55rem;
}

.phase-charts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.phase-chart-col {
    flex: 1;
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.phase-charts-header {
    background: #60A5FA;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.donut-chart-container.small {
    width: 140px;
    height: 140px;
    margin: 1.5rem auto;
}

.donut-circle.p-summary {
    background: conic-gradient(#10B981 0deg 180deg, #EAB308 180deg 270deg, #EF4444 270deg 360deg);
}

.donut-circle.p-risk {
    background: conic-gradient(#3B82F6 0deg 180deg, #8B5CF6 180deg 270deg, #D946EF 270deg 360deg);
}

.donut-circle.p-action {
    background: conic-gradient(#F43F5E 0deg 180deg, #14B8A6 180deg 270deg, #0F766E 270deg 360deg);
}

.bar-wrapper ul.horiz-bar-list {
    list-style: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bar-wrapper ul.horiz-bar-list li {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.bar-wrapper ul.horiz-bar-list li span {
    width: 180px;
    font-weight: 500;
}

.hbar {
    height: 12px;
    border-radius: 2px;
}

/* Product Category Filters */
.product-category-filters {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1E3A8A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 0.5rem;
    text-align: center;
}

.radio-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-pills.multi-row {
    max-width: 320px;
}

.radio-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-pill:hover {
    border-color: #38BDF8;
    background: #F0F9FF;
}

.radio-pill.active {
    border: 1.5px solid #0284C7;
    background: #F0F9FF;
    color: #0284C7;
}

.radio-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.5px solid #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.2s;
}

.radio-pill.active .radio-circle {
    border-color: #0284C7;
}

.radio-pill.active .radio-circle::after {
    content: '';
    width: 7px;
    height: 7px;
    background: #0284C7;
    border-radius: 50%;
}

/* 3D Action Button */
.btn-3d-primary {
    background: linear-gradient(to bottom, #0284c7, #0369a1);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 6px 16px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 4px 0 #075985,
        0 5px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s;
    user-select: none;
}

.btn-3d-primary:hover {
    background: linear-gradient(to bottom, #0369a1, #075985);
}

.btn-3d-primary:active {
    transform: translateY(4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1),
        0 0px 0 #075985,
        0 1px 2px rgba(0, 0, 0, 0.4);
}

.filter-divider {
    width: 1px;
    background: #E5E7EB;
    align-self: stretch;
    min-height: 80px;
}

@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: 60px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
    }

    .sidebar-menu {
        display: none;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }
}
