.loading-container {
    position: relative;
    min-height: 200px;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1000;
}

.content-loading {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.content-loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Fade-in animation for content */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}