/*
File: assets/css/shared/system-maintenance-notice.css
Purpose: Compact global Maintenance Mode notice for Public, User and Franchise surfaces.
*/
.raanmat-system-maintenance-notice {
    position: fixed;
    top: 76px;
    left: var(--rm-sidebar-width, 0px);
    right: 0;
    z-index: 950;
    min-height: 42px;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #fff7e6;
    border-bottom: 1px solid #f4c96b;
    color: #6f4900;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
}

body.has-system-maintenance-notice .user-main-content,
body.has-system-maintenance-notice .franchise-main-content {
    padding-top: 82px;
}

body.public-user-registration-page.has-system-maintenance-notice,
body.user-login-page.has-system-maintenance-notice,
body.franchise-login-page.has-system-maintenance-notice {
    padding-top: 50px;
}

body.public-user-registration-page .raanmat-system-maintenance-notice,
body.user-login-page .raanmat-system-maintenance-notice,
body.franchise-login-page .raanmat-system-maintenance-notice {
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .raanmat-system-maintenance-notice {
        left: 0;
        padding-inline: 12px;
        font-size: 13px;
    }

    body.has-system-maintenance-notice .user-main-content,
    body.has-system-maintenance-notice .franchise-main-content {
        padding-top: 76px;
    }
}
