/* Additional styles for the rotator if needed */
.rotator-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.rotator-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.rotator-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #f5c6cb;
    text-align: center;
    z-index: 1000;
}

/* Smooth transitions */
iframe {
    transition: opacity 0.3s ease;
}

iframe.loading {
    opacity: 0;
}

iframe.loaded {
    opacity: 1;
}