/* Ocultar mensaje por defecto */
#rotate-message {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;
    max-width: 80%;
}

/* Asegurar que la web se oculta cuando se muestra el mensaje */
body.horizontal-mode > *:not(#rotate-message) {
    display: none !important;
}

body.horizontal-mode {
    background: rgb(255, 255, 255) !important;
}
