/* Progress Page Styles */
.oeg-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 40px 20px;
}

.oeg-progress-container h4 {
    color: #333;
    margin-bottom: 30px;
    font-size: 16px;
    text-align: center;
}

.oeg-progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.oeg-progress-bar {
    height: 100%;
    background-color: #204f70;
    border-radius: 4px;
    width: 30%;
    position: relative;
    animation: oeg-infinite-slide 2s ease-in-out infinite;
}

@keyframes oeg-infinite-slide {
    0% {
        transform: translateX(-100%);
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(333%);
        opacity: 0.7;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .oeg-progress-container {
        padding: 30px 15px;
        min-height: 150px;
    }
    
    .oeg-progress-container h4 {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .oeg-progress-bar-container {
        max-width: 300px;
        height: 6px;
    }
}