/*
 * Progress Bar Status Generator
 * Extracted from inline styles
 */

/* Container */
.epcan-status-progress-section {
    padding: 60px 0;
}

.epcan-status-progress-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.epcan-status-progress-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #626262;
    margin-bottom: 15px;
}

.epcan-status-progress-subtitle {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #f1800e;
    margin-bottom: 40px;
}

/* Progress Bar Container */
.epcan-progress-wrapper {
    width: 100%;
    margin: 0 auto 40px;
}

.epcan-progress-bar-container {
    background: #e0e0e0;
    border-radius: 50px;
    height: 40px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.epcan-progress-bar {
    height: 100%;
    background: #f1800e;
    border-radius: 50px;
    transition: width 2s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    width: 0; /* Start bei 0 */
}

.epcan-progress-percentage {
    display: none;
}

/* Status Beschreibungstext */
.epcan-status-description {
    width: 100%;
    margin: 0 auto 40px;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.epcan-status-description a {
    color: #f1800e;
    text-decoration: underline;
}

.epcan-status-description a:hover {
    color: #d97009;
}

/* Info-Boxen (aus API) */
.epcan-status-boxes {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.epcan-info-box {
    background: white;
    border-left: 4px solid #f1800e;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.epcan-info-box p {
    margin: 0;
}

/* Status-spezifische Farben für Progress Bar - alle einheitlich orange */
.epcan-progress-bar.vorbereitung,
.epcan-progress-bar.vermarktung,
.epcan-progress-bar.planung,
.epcan-progress-bar.bau,
.epcan-progress-bar.nachbuchung,
.epcan-progress-bar.fertig,
.epcan-progress-bar.storniert {
    background: #f1800e;
}

/* Responsive */
@media (max-width: 768px) {
    .epcan-status-progress-section {
        padding: 40px 0;
    }

    .epcan-status-progress-title {
        font-size: 32px;
    }

    .epcan-status-progress-subtitle {
        font-size: 20px;
    }

    .epcan-progress-bar-container {
        height: 35px;
    }

    .epcan-progress-percentage {
        font-size: 16px;
    }

    .epcan-status-description {
        padding: 20px;
        font-size: 16px;
    }

    .epcan-info-box {
        padding: 20px;
        font-size: 15px;
    }
}
