/* CSS for Mobile Overlay */

#mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-message {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-message h2 {
    color: #333;
    margin-top: 0;
    font-size: 24px;
}

.mobile-message p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}
