/* Mobile header fixes for proper logo display and layout */
@media (max-width: 767.98px) {
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
        height: 65px;
        background: #181a1b;
        padding: 0 1rem !important;
        display: grid !important;
        grid-template-columns: 40px 1fr 40px;
        align-items: center;
    }

    .mobile-header .header-logo {
        font-family: 'Pacifico', cursive, Arial, sans-serif;
        font-size: 2.2rem;
        text-decoration: none;
        color: #fff;
        display: block;
        text-align: center;
        margin: 0 auto;
        grid-column: 2;
    }

    .mobile-header > div:first-child {
        grid-column: 1;
        justify-content: flex-start;
    }

    .mobile-header > div:last-child {
        grid-column: 3;
        justify-content: flex-end;
        display: flex;
        align-items: center;
    }    .mobile-header .me-4 {
        margin-right: 1.2rem !important;
    }

    .mobile-header .me-3 {
        margin-right: 0 !important;
    }

    /* Ensure proper spacing for notifications icon */
    .mobile-header .notifications-badge {
        right: -5px;
        top: -5px;
    }

    /* Body padding adjustment for fixed header */
    body {
        padding-top: 56px;
    }
}
