/* Portrait waarschuwing */
@media screen and (max-width: 768px) and (orientation: portrait) {
    .portrait-warning {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.95);
        z-index: 99999;
        padding: 20px;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 20px;
    }

    .portrait-warning i {
        font-size: 48px;
        color: #2f71b8;
        animation: rotate 2s infinite;
    }

    .portrait-warning p {
        font-size: 16px;
        color: #333;
        max-width: 280px;
        line-height: 1.5;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(90deg); }
    }
}

/* Verberg waarschuwing in landscape */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .portrait-warning {
        display: none !important;
    }
}