
.calenday-embed {
    margin: 15px 0;
    clear: both;
}

.calenday-embed iframe {
    max-width: 100%;
    border: none;
}

.calenday-embed img {
    max-width: 100%;
    height: auto;
}

/* Responsive handling */
@media (max-width: 768px) {
    .calenday-embed {
        margin: 10px 0;
    }
}

/* Loading state */
.calenday-loading {
    opacity: 0.6;
    position: relative;
}

.calenday-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top: 2px solid #333;
    border-radius: 50%;
    animation: calenday-spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes calenday-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
