.operational-stats-container {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.operational-stats-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.operational-stats-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.operational-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-left: 4px solid;
    padding-left: 0.75rem;
}

.operational-waste-streams .operational-section-title {
    border-left-color: #28a745;
}

.operational-value-chain .operational-section-title {
    border-left-color: #fd7e14;
}

.operational-services .operational-section-title {
    border-left-color: #0d6efd;
}

.operational-stat-item {
    margin-bottom: 1.25rem;
}

.operational-stat-item:last-child {
    margin-bottom: 0;
}

.operational-stat-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.operational-stat-name {
    color: #495057;
    font-weight: 500;
}

.operational-stat-value {
    color: #6c757d;
    font-weight: 600;
}

.operational-progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
    overflow: hidden;
    display: flex;
}

.operational-progress-bar {
    border-radius: 4px;
    transition: width 0.6s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
}

.operational-waste-streams .operational-progress-bar {
    background-color: #28a745;
}

.operational-value-chain .operational-progress-bar {
    background-color: #fd7e14;
}

.operational-services .operational-progress-bar {
    background-color: #0d6efd;
}

@media (max-width: 768px) {
    .operational-stats-container {
        padding: 1rem;
    }

    .operational-stats-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .operational-stats-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .operational-section-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .operational-stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .operational-stats-container {
        padding: 0.75rem;
        margin: 1rem 0;
    }

    .operational-stat-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}