body.maintenance-mode-active {
    overflow: hidden;
}

#maintenance-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    backdrop-filter: blur(5px);
    pointer-events: none;
}

#maintenance-mode-modal {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 400px;
    pointer-events: auto;
}

#maintenance-mode-message p {
    margin: 10px 0;
}
