/* Mobile warning overlay */
.mobile-warning-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.mobile-warning-content {
    padding: 40px;
    text-align: center;
    max-width: 90%;
}

.mobile-warning-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Show warning on screens below 768px */
@media (max-width: 767px) {
    .mobile-warning-overlay {
        display: flex;
    }
}
