
/* Hide the rotate message by default */
#rotate-message {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 5px;
    font-size: 20px;
}

.icon {
    font-size: 30px;
}







#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    display: none; /* Hidden by default */
}

#cookieConsent p {
    margin: 0;
    font-size: 14px;
}

#cookieConsent button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

#cookieConsent button:hover {
    background-color: #45a049;
}

#cookieConsent a {
    color: #4CAF50;
    text-decoration: none;
}

#cookieConsent a:hover {
    text-decoration: underline;
}

