/* ========================================
   MARK ANALYST - MODERN DESIGN SYSTEM
   ======================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Colors - Modern Light Theme */
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-500: #0ea5e9;
    --primary-600: #0284c7;
    --primary-700: #0369a1;
    --primary-900: #0c4a6e;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --success-500: #10b981;
    --warning-500: #f59e0b;
    --error-500: #ef4444;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing Scale */
    --space-xs: 0.25rem;
    /* 4px */
    --space-sm: 0.5rem;
    /* 8px */
    --space-md: 1rem;
    /* 16px */
    --space-lg: 1.5rem;
    /* 24px */
    --space-xl: 2rem;
    /* 32px */
    --space-2xl: 3rem;
    /* 48px */
    --space-3xl: 4rem;
    /* 64px */

    /* Border Radius */
    --radius-sm: 0.375rem;
    /* 6px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

.color-white {
    color: #FFF;
}

.green-border {
    border: 0.5px solid #04E137;
    border-radius: 13px;
}

.green-text {
    color: #31DF05;
}

.back-button {
    border-radius: 10px;
    border: 2px solid #1EC3FF;
    padding: 8px 20px;
    color: #1EC3FF;
    background-color: transparent;
    max-width: 185px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF;
    background-color: #1F1F1F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: absolute !important;
    right: 0;
    top: 0;
    width: 230px;
    height: 230px;
    background-image: url('/background@2x.png');
    background-size: 230px 230px;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: -1;
    pointer-events: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1.25;
    color: #FFF;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 45px;
    font-weight: 400;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-15 {
    font-size: 15px;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-700 {
    font-weight: 700;
}

font-weight-500 {
    font-weight: 500;
}

/* Company Color Classes */
.brand_blue {
    background-color: #1C75D4 !important;
}

.magenta_pink {
    background-color: #C624B1 !important;
}

.crimson_red {
    background-color: #C62435 !important;
}

.purple_orchid {
    background-color: #9324C6 !important;
}

.indigo_violet {
    background-color: #6A3DE6 !important;
}

.teal_green {
    background-color: #12826F !important;
}

.emerald_green {
    background-color: #128224 !important;
}

.electric_blue {
    background-color: #2107E9 !important;
}

.burnt_orange {
    background-color: #BD520A !important;
}

/* Light background versions */
.brand_blue_light_background {
    background-color: rgba(28, 117, 212, 0.12);
}

.magenta_pink_light_background {
    background-color: rgba(198, 36, 177, 0.12);
}

.crimson_red_light_background {
    background-color: rgba(198, 36, 53, 0.12);
}

.purple_orchid_light_background {
    background-color: rgba(147, 36, 198, 0.12);
}

.indigo_violet_light_background {
    background-color: rgba(106, 61, 230, 0.12);
}

.teal_green_light_background {
    background-color: rgba(18, 130, 111, 0.12);
}

.emerald_green_light_background {
    background-color: rgba(18, 130, 36, 0.12);
}

.electric_blue_light_background {
    background-color: rgba(33, 7, 233, 0.12);
}

.burnt_orange_light_background {
    background-color: rgba(189, 82, 10, 0.12);
}

p {
    margin-bottom: var(--space-md);
    color: #FFF;
}

a:hover {
    text-decoration: none;
}

.general-btn {
    color: #1F1F1F;
    text-align: center;
    font-size: 13.79px;
    font-weight: 700;
    line-height: normal;
    border-radius: 48px;
    background: #1EC3FF;
    padding: 11px 40px;
    border: 1px solid #1EC3FF;
    text-decoration: none;
}

.general-btn:hover {
    background: transparent;
    color: #1EC3FF;
    text-decoration: none;
}

/*  
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}
*/




/* --- Header --- */
.site-header {
    background: #1e293b;
    border-bottom: 1px solid #334155;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-md);
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    text-decoration: none;
}

.site-logo:hover {
    color: #60a5fa;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.site-nav a {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.site-nav a:hover {
    color: #f1f5f9;
    background-color: #334155;
    text-decoration: none;
}

.site-nav .btn-primary {
    background-color: var(--primary-600);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.site-nav .btn-primary:hover {
    background-color: var(--primary-700);
    color: white;
    text-decoration: none;
}



/* --- Sidebar --- */
.site-sidebar {
    max-width: 250px;
    width: 100%;
    background: #131217;
    display: flex;
    flex-direction: column;
    gap: 115px;
}

.sidebar-bottom-wrapper {
    text-align: center;
    margin-bottom: 80px;
}

img.sidebar-logo {
    width: 100%;
    max-width: 175px;
}

.sidebar-logo-wrapper {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 9px;
    justify-content: center;
    margin: 40px 0 50px;
}

.sidebar-s-logo {
    max-width: 27px;
    width: 100%;
}

img.sidebar-logo-bottom {
    max-width: 87px;
    width: 100%;
}

.sidebar-bottom-wrapper p {
    max-width: 185px;
    width: 100%;
    margin: 36px auto 0;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.sidebar-company {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 22px;
    justify-content: center;
    padding: 15px;
    border-radius: 17px;
}

.sidebar-company-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sidebar-company-name {
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 210px;
    width: 100%;
    margin-top: 45px;
}

a.sidebar-link,.sidebar-talk-ai-link {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    line-height: normal;
    padding: 10px 42px;
    border: 2px solid transparent;
    border-left: none;
    border-radius: 0 20px 20px 0;
    text-decoration: none;
    transition: all 0.25s ease;
    max-width: 100%;
    width: 100%;
}

a.sidebar-link.active,
a.sidebar-link:hover,
.sidebar-talk-ai-link:hover,
.sidebar-talk-ai-link.active {
    border-color: #04E137;
    background-color: #1B2A1E;
}


.content-card {
    padding: var(--space-2xl);
}

/* --- Bootstrap Card Dark Theme Overrides --- */
.card {
    background-color: #1e293b;
    border: 1px solid #334155;
    color: #e2e8f0;
}


.card-body {
    color: #e2e8f0;
}

.card-title,
.card-header h5 {
    color: #f1f5f9;
}

/* --- Footer --- */
.site-footer {
    color: #FFF;
    padding: var(--space-xl) 0;
    margin-top: auto;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #00E617 23.4%, #1EC3FF 60.92%) 1;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.site-footer .container p {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-links a {
    color: #FFF;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-500);
    text-decoration: none;
}


/* Reusable dark control style (can be applied to select, input, button, etc.) */
.ui-control-dark {
    width: 100%;
    padding: var(--space-md);
    border-radius: 13px;
    transition: all var(--transition-fast);
    color: #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    border: 1px solid #444;
    background-color: #1E293B;

}

.ui-control-dark:focus,
.ui-control-dark:focus-visible {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    background-color: #1e293b;
    color: #e2e8f0;
}

/* Reusable dark dropdown panel style */
.ui-dropdown-dark {
    border: 1px solid #475569;
    border-radius: 13px;
    background-color: #1e293b;
    color: #e2e8f0;
}

.ui-dropdown-dark .form-check-label {
    color: #e2e8f0;
}

/* form styles*/
/* --- Form Components --- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.form-control,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid #475569;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: #1e293b;
    color: #FFF;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    background-color: #1e293b;
    color: #e2e8f0;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-select option {
    background-color: #1e293b;
    color: #e2e8f0;
}

select,
.form-select {
    appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-size: 16px;
    border-radius: 13px !important;
}

.form-control {
    border-radius: 13px !important;
}

/* --- Table Components --- */
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: var(--space-lg);
    background: #191122;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table th,
.table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid #334155;
    color: #e2e8f0;
    background-color: #191122;
    ;
}

.table th {
    background-color: #1e293b;
    font-weight: 600;
    color: #f1f5f9;
}

.table tbody tr:hover {
    background-color: #1e293b;
}

/* --- Alert Components --- */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    border: 1px solid;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-error {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fed7aa;
    color: #d97706;
}

/* --- Loading States --- */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    color: #94a3b8;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #475569;
    border-top: 2px solid #60a5fa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: var(--space-sm);
}

/* --- Bootstrap Icons --- */
i.bi.bi-chat {
    margin-left: 10px;
}

i.bi.bi-arrow-repeat {
    margin-left: 10px;
}

.results-news-wrapper {
    margin-top: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* --- Metric Cards (Dashboard) --- */
.metric-card {
    padding: var(--space-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.metric-card-title {
    font-size: 15px;
    margin-bottom: 30px;
}

.metric-card-tooltip-icon {
    cursor: help;
    opacity: 0.75;
    font-size: 1rem;
}

.metric-card-tooltip-icon:hover {
    opacity: 1;
}

.metric-card-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.metric-entry {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}


.metric-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.metric-company-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.metric-color-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.metric-stats-wrapper {
    display: flex;
    flex: 1;
    gap: 10px;
}


.metric-growth {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #31DF05;
}

.metric-growth.text-success {
    color: #31DF05 !important;
}

.metric-growth.text-danger {
    color: #ef4444;
}

.metric-growth i {
    font-size: 1rem;
}

.graph-social-filters {
    padding: 10px;
}





/*
.platform-filter-btn.active,
.company-filter-btn.active,
.platform-filter-btn-popular.active {
    background-color: #ffffff;
    color: #1e293b;
}*/

.platform-filter-btn.active i.bi-facebook {
    color: #1877f2;
}

.platform-filter-btn.active i.bi-instagram {
    color: #e4405f;
}

.platform-filter-btn.active i.bi-linkedin {
    color: #0077b5;
}

.platform-filter-btn i {
    font-size: 1rem;
}

/* Icon colors for inactive buttons */
.platform-filter-btn:not(.active) i.bi-facebook {
    color: #1877f2;
}

.platform-filter-btn:not(.active) i.bi-instagram {
    color: #e4405f;
}

.platform-filter-btn:not(.active) i.bi-linkedin {
    color: #0077b5;
}

/* Icon colors for nav-tabs (Bootstrap tabs) */
.nav-link i.bi-facebook,
.platform-filter-btn-popular i.bi-facebook,
.competitor-filter-btn i.bi-facebook {
    color: #1877f2;
}

.nav-link i.bi-instagram,
.platform-filter-btn-popular i.bi-instagram,
.competitor-filter-btn i.bi-instagram {
    color: #e4405f;
}

.nav-link i.bi-linkedin,
.platform-filter-btn-popular i.bi-linkedin,
.competitor-filter-btn i.bi-linkedin {
    color: #0077b5;
}

.dashboard-graphs-container {
    margin: 50px 0;
}







.json-section {
    border: 1px solid #31DF05;
    border-radius: 35px;
    margin-bottom: 20px;
}



.json-section {
    padding: 20px;
}

.json-section-title {
    color: #31DF05;
}

.json-renderer-with-sidebar {
    display: flex;
}

.json-sidebar {
    max-width: 250px;
    width: 100%;
    padding-right: 10px;
}

.json-sidebar-link {
    color: #FFF;

}

.json-sidebar-link:hover {
    color: #fff;
    text-decoration: underline;
}

.json-sidebar-nav li {
    padding: 25px 0;
    border-bottom: 1px solid #334155;
}

.json-sidebar-nav {
    list-style: none;
    padding: 0;
}

li:not(:last-child) .json-object {
    border-bottom: 1px solid #FFF;
}

/* Analysis Company Cards Styles */
.analysis-company-card {
    background-color: #1a1a1a;
    border: 1px solid #31DF05;
    border-radius: 20px;
    padding: 16px;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.analysis-company-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.analysis-company-name {
    color: white;
    font-weight: 500;
    margin-bottom: 4px;
}

.analysis-company-badge {
    color: white;
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 11px;
}



.hub-analysis-table .btn.btn-sm.btn-primary {
    background: #1EC3FF;
    border-color: #1EC3FF;
    border-radius: 8px;
    color: #1F1F1F;
    font-size: 13.79px;
    font-weight: 700;
    line-height: normal;
    padding: 12px 40px;
}

.page-dashboard #dashboardFilters .row {
    margin-bottom: 30px;
}

a.competitor-filter-btn,
.platform-filter-btn,
.company-filter-btn,
.platform-filter-btn-popular,
.page-dashboard #platform-link-all,
.page-social-insights #platform-link-all {
    color: #FFF;
    border-radius: 7px;
    background: #302936;
    border: 1px solid transparent;
    padding: 6px 10px;
    text-decoration: none;
}

a.competitor-filter-btn.tutti-btn,
.dashboard-graphs-container #platform-link-all,
.dashboard-graphs-container #general-company-btn-all,
.dashboard-graphs-container #facebook-company-btn-all,
.dashboard-graphs-container #instagram-company-btn-all,
.dashboard-graphs-container #linkedin-company-btn-all,
.social-activity-filters #platform-link-all {
    border-radius: 11px;
    border: 1px solid #FFF;
    text-decoration: underline;
    text-underline-offset: 2px;
    background: transparent;
    color: #FFF;
}

.page-dashboard .platform-filter-btn.active,
.page-dashboard #platform-link-all.active,
.page-social-insights #platform-link-all.active,
.page-social-insights .platform-filter-btn.active,
.page-social-insights .platform-filter-btn-popular.active,
.page-social-activity .social-filter-buttons a.competitor-filter-btn.selected,
.page-ads-insights .competitor-filter-btn.selected {
    background: #FFF;
    color: #191122;
    text-decoration: none;
}



.page-dashboard .card-header-tabs .nav-link.active,
.page-social-insights .card-header-tabs .nav-link.active {
    color: black;
    background: #FFF;
}

.page-dashboard .card-header-tabs .nav-link,
.page-social-insights .card-header-tabs .nav-link {
    color: white;
    border: 1px solid #FFF;
}

.social-page-switch {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.social-page-switch-label {
    max-width: 183px;
    width: 100%;
    font-size: 20px;
    line-height: 21px;
}

.social-page-switch-control {
    display: flex;
    align-items: center;
    padding: 2px;
    border-radius: 12px;
    border: 1px solid #444;
    background: #14131a;
    max-width: 360px;
    width: 100%;
}

.social-page-switch-btn {
    flex: 1 1 0;
    border-radius: 5px;
    padding: 6px 16px;
    text-align: center;
    color: #f3f3f9;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
    font-size: 18px;
    line-height: 21px;
}

.social-page-switch-btn.active {
    background-color: #1EC3FF;
    color: #0f1720;
}

ul#graphTabs {
    margin-bottom: 30px;
}

.page-hub-analysis .subtitle {
    max-width: 470px;
}

.hub-analysis-types-box {
    max-width: 460px;
    border-radius: 19px;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1F1F1F;
}

.hub-analysis-types-box li {
    color: #FFF;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.hub-analysis-types-box h5 {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

p.page-intro {
    max-width: 540px;
}

.analysis-section-features li {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

p.analysis-section-description {
    margin-bottom: 0;
}

.when-to-use-box {
    padding: 27px 35px;
    border-radius: 19px;
    border: 1px solid #31DF05;
    max-width: 550px;
    margin-bottom: 60px;
    margin-top: 35px;
}

.when-to-use-box li {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.analysis-section {
    padding-top: 60px;
    border-top: 1px solid #B8B8B8;
}

.analysis-section.analysis-section-one-to-one {
    border-top: unset;
}

.hub-analysis-types-box-btn {
    background-color: #1EC3FF;
    border-radius: 10px;
    color: #1F1F1F;
    font-weight: 700;
    line-height: normal;
    padding: 10px 24px;
    border: 1px solid #1EC3FF
}

.hub-analysis-types-box-btn:hover {
    background-color: transparent;
    color: #1EC3FF;
    border: 1px solid #1EC3FF;
}

.hub-analysis-table .badge-competitor {
    padding: 7px 10px;
    font-size: 9.174px;
    line-height: normal;
}

/* Form styles */
.general-input {
    border: 1px solid #04E137;
    background: #FFF;
    border-radius: 0;
    padding: 13px 30px;
    color: #1F1F1F;
    max-width: 100%;
    width: 100%;
}

/* Login page styles */
.login-page,
.forgot-password-form,
.reset-password-form {
    max-width: 570px;
    margin: 0 auto;
    padding: 80px 0;
}

.login-page-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.login-page-favicon {
    max-width: 45px;
    width: 100%;
}

.login-page-logo {
    max-width: 288px;
    width: 100%;
}

.login-page-heading {
    text-align: center;
    font-size: 45px;
    font-weight: 400;
    line-height: normal;
    margin: 55px auto;
}

.login-page-subheading {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: normal;
}

.login-page-form {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.login-page-forgot-link {
    color: #1EC3FF;
    font-size: 12px;
    text-decoration: underline;
}

.login-page-remember-label span {
    font-size: 12px;
}

.login-page-remember-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 145px;
    width: 100%;
}

.login-page-remember-row {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
}

.login-submit-button,
.forgot-password-submit-button {
    text-align: center;
    margin-top: 35px;
}

.dashboard-ai-summary {
    padding: 20px;
}

.ai-summary-content {
    max-width: 85%;
    width: 100%;
}

.ai-summary-title {
    margin-bottom: 10px;
}

a#aiSummaryToggle {
    max-width: 90px;
    width: 100%;
}

.dashboard-metrics-cards {
    margin: 35px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 10px;
}

.dashboard-metrics-cards .single-card-wrapper {
    flex: 0 0 auto;
    width: 32%;
}

.list-grid-toggle button {
    border: 0;
    color: #939393;
    font-size: 25px;
    background: transparent !important;
    padding: 0;
}

.list-grid-toggle button.active {
    color: #FFF;
}

.list-grid-toggle .btn-group {
    gap: 10px;
}