:root {
    /* Defaults; overridden by /js/branding-theme.js from Settings → Branding */
    --primary-dark: #1e3a5f;
    --primary-blue: #2c5282;
    --accent-cyan: #17a2b8;
    --accent-light: #5bc0de;
    --bg-light: #f8f9fa;
    --bg-gradient-start: #1e3a5f;
    --bg-gradient-end: #17a2b8;
    --brand-gradient: linear-gradient(135deg, #3FAE49 0%, #9ACD32 33%, #F7931E 66%, #E53935 100%);
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --border-color: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header */
header {
    background: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.65rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 0;
}

.logo {
    width: auto;
    max-width: 180px;
    height: 36px;
    max-height: 36px;
    object-fit: contain;
}

header h1 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 700;
    white-space: nowrap;
}

nav {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Main app nav: single row; scroll horizontally if many items.
   Do not flex-grow: a wide nav box + justify-end stacks labels under the logo/profile
   (later siblings paint on top), which makes the menu look broken / unclickable. */
.header-content > nav {
    flex: 0 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 0.2rem;
    justify-content: flex-start;
    align-items: center;
    margin-left: auto;
    /* Do not use overflow:auto/hidden here: it clips .nav-dropdown-content
       (position:absolute; top:100%), so hovers work but submenu links are not clickable. */
    overflow: visible;
    position: relative;
    z-index: 200;
}

.header-content > nav > .nav-link,
.header-content > nav > .nav-dropdown > span.nav-link {
    padding: 0.32rem 0.45rem;
    font-size: 0.78rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: var(--accent-cyan);
    color: var(--text-light);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown > .nav-link,
.nav-dropdown > span.nav-link {
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--text-light);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 5000;
    pointer-events: auto;
    border: 1px solid var(--border-color);
}

.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}

/* Add padding to bridge gap between menu and submenu */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
    pointer-events: auto;
}

.nav-dropdown-content .nav-link {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 0;
    margin: 0;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.nav-dropdown-content .nav-link:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-content .nav-link:last-child {
    border-radius: 0 0 8px 8px;
}

.nav-dropdown-content .nav-link:hover,
.nav-dropdown-content .nav-link.active {
    background: var(--accent-cyan);
    color: var(--text-light);
}

/* Nested submenu (e.g. Reports under Other) */
.nav-dropdown-content .nav-submenu {
    position: relative;
}
.nav-dropdown-content .nav-submenu-trigger {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: default;
    user-select: none;
    white-space: nowrap;
    min-height: 2.5rem;
}
.nav-dropdown-content .nav-submenu-trigger::after {
    content: '\203A';
    margin-left: 0.35rem;
    font-size: 1rem;
    opacity: 0.75;
}
.nav-dropdown-content .nav-submenu:hover .nav-submenu-trigger {
    background: var(--accent-cyan);
    color: var(--text-light);
}
.nav-dropdown-content .nav-submenu-flyout {
    display: none;
    position: absolute;
    left: calc(100% - 6px);
    top: 0;
    min-width: 200px;
    background: var(--text-light);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
    z-index: 6001;
}
.nav-dropdown-content .nav-submenu:hover .nav-submenu-flyout {
    display: block;
}
.nav-dropdown-content .nav-submenu-flyout .nav-link {
    border-radius: 0;
}
.nav-dropdown-content .nav-submenu-flyout .nav-link:first-child {
    border-radius: 8px 8px 0 0;
}
.nav-dropdown-content .nav-submenu-flyout .nav-link:last-child {
    border-radius: 0 0 8px 8px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-light);
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    margin-bottom: 0;
    outline: none !important;
    border: none !important;
}

.hero-section:focus,
.hero-section:focus-visible,
.hero-section:focus-within {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-content {
    outline: none !important;
    border: none !important;
}

.hero-content:focus,
.hero-content:focus-visible,
.hero-content:focus-within {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-cyan);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--text-light);
}

/* Statistics Section */
.stats-section {
    max-width: 1400px;
    margin: -3rem auto 2rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-weight: 500;
}

/* Content Section */
.content-section {
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 2rem;
}

/* Hidden sections */
.hidden-section {
    display: none !important;
}

.visible-section {
    display: block !important;
}

/* Homepage Frameworks - bring it closer to hero */
#homepage-frameworks {
    margin-top: -1rem;
    padding-top: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--primary-dark);
    font-size: 2rem;
}

.filters {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

/* Business Unit Tiles Grid (All Policies) – card style with teal accent bar */
.company-tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.company-tile {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
    overflow: hidden;
}

/* Teal vertical accent bar, slightly inset from edge so corners stay rounded */
.company-tile::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #4AB8BD;
    border-radius: 12px 0 0 12px;
}

.company-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.company-tile:hover::before {
    background: #3da5aa;
}

.company-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.company-tile-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A202C;
    line-height: 1.3;
}

.company-tile-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.company-tile-flag {
    font-size: 1.5rem;
    line-height: 1;
    display: inline-block;
}

.company-tile-count {
    font-size: 0.9rem;
    color: #4AB8BD;
    font-weight: 600;
    white-space: nowrap;
}

.company-tile-preview {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.5;
}

.company-tile-preview li {
    margin-bottom: 0.35rem;
}

/* Business Units page: tile wrapper with actions below */
.company-tile-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-tile-wrapper .company-tile {
    flex: 1;
}

.company-tile-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0 0.25rem;
}

/* Business Unit policies: tile/list view toggle */
.policy-view-toggle .policy-view-btn.active {
    background: var(--accent-cyan);
    color: white;
    border-color: var(--accent-cyan);
}

/* Policies Grid */
.policies-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
    gap: 1.5rem;
    width: 100%;
}

.policy-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid var(--accent-cyan);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.policy-header {
    margin-bottom: 1rem;
}

.policy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.policy-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-category {
    background: var(--accent-cyan);
    color: white;
}

.badge-status {
    background: var(--bg-light);
    color: var(--text-dark);
}

.badge-status.active {
    background: var(--success);
    color: white;
}

.badge-status.draft {
    background: var(--warning);
    color: var(--text-dark);
}

.policy-description {
    color: #6c757d;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.policy-footer {
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.policy-owner {
    font-size: 0.9rem;
    color: #6c757d;
}

.policy-date {
    font-size: 0.85rem;
    color: #adb5bd;
}

/* Form */
.policy-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

input[type="text"],
select,
textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

textarea {
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    float: right;
    font-size: 2rem;
    font-weight: bold;
    color: #adb5bd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--danger);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.35rem;
        padding: 0.5rem 0.65rem;
    }

    header h1 {
        font-size: 1rem;
        max-width: 9rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav {
        width: auto;
        justify-content: flex-end;
    }

    .header-content > nav {
        justify-content: flex-start;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .filters {
        width: 100%;
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
    }
}

/* Loading State */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--accent-cyan);
}

.loading::after {
    content: "Loading...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "Loading"; }
    40% { content: "Loading."; }
    60% { content: "Loading.."; }
    80%, 100% { content: "Loading..."; }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Frameworks Grid */
.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.framework-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    border-top: 5px solid var(--accent-cyan);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.framework-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-light));
}

.framework-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(23, 162, 184, 0.2);
    border-color: var(--accent-cyan);
}

.framework-card.add-framework {
    border-left: 4px dashed var(--accent-cyan);
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.framework-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.framework-card h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-card p {
    color: #6c757d;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-align: center;
    font-size: 0.95rem;
}

.framework-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid #dee2e6;
}

.framework-stats span {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
    white-space: nowrap;
}

.framework-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
}

.framework-actions button {
    flex: 1;
    padding: 0.875rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Frameworks Header */
.frameworks-header {
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: white;
    padding: 3rem 2rem;
    margin: -2rem -2rem 2rem -2rem;
    text-align: center;
}

.frameworks-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.frameworks-header-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Markdown content styling */
.markdown-content {
    font-size: 1rem;
    line-height: 1.8;
}

.markdown-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
}

.markdown-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 1.25rem 0 0.75rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e0e0e0;
}

.markdown-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 1rem 0 0.5rem 0;
}

.markdown-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0.9rem 0 0.45rem 0;
}

.markdown-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin: 0.8rem 0 0.4rem 0;
}

.markdown-content h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    margin: 0.7rem 0 0.35rem 0;
}

.markdown-content p {
    margin: 0.75rem 0;
    line-height: 1.8;
}

.markdown-content ul,
.markdown-content ol {
    margin: 0.75rem 0;
    padding-left: 2rem;
}

.markdown-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.markdown-content strong {
    font-weight: 600;
    color: var(--primary-dark);
}

.markdown-content em {
    font-style: italic;
}

/* ===========================
   User Profile Section
   =========================== */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-cyan));
    padding: 0.45rem 0.75rem;
    border-radius: 50px;
    margin-left: 0.35rem;
    flex: 0 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.user-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-provider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-provider.azure {
    color: #7dd3fc;
}

.logout-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: rgba(220, 53, 69, 0.9);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .user-profile {
        padding: 0.4rem 0.75rem;
        margin-left: 0.5rem;
    }
    .user-info {
        display: none;
    }
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

