/* Progress Bar Styles */
.codicts-progress-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 10px 0;
}

.codicts-progress-bar {
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.codicts-progress-text span {
    color: #fff;
}

.codicts-progress-fill {
    height: 100%;
    transition: width 0.3s ease;
    /*background-image: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%
    );*/
    background-size: 20px 20px;
    animation: codicts-progress-animation 2s ease-in-out;
}

.codicts-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

/* Animation for progress bar fill */
@keyframes codicts-progress-animation {
    0% { 
        width: 0%; 
    }
}

/* Optional: Hover effect */
.codicts-progress-container:hover .codicts-progress-fill {
    background-size: 30px 30px;
}

/* Optional: Mobile responsive adjustments */
@media (max-width: 768px) {
    .codicts-progress-text {
        font-size: 12px;
    }
    
    .codicts-progress-container {
        margin: 8px 0;
    }
}