/* Footer styles for zoom recommendation */
.zoom-recommendation {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 5px 0;
    font-size: 12px;
    z-index: 1000;
    backdrop-filter: blur(3px);
}

.zoom-recommendation button {
    background: none;
    border: none;
    color: #4caf50;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Dark theme support */
body.dark-theme .zoom-recommendation {
    background-color: rgba(50, 50, 50, 0.7);
}

/* Adjusting main content to accommodate the footer */
.main-content {
    padding-bottom: 30px;
}