.stressmeter-container {
    max-width: 300px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.stressmeter-label {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center;
    color: #333;
}

.stressmeter-bar {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.stressmeter-progress {
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

/* Couleurs par niveau - fond uni pour uniformité */
.stressmeter-progress.level-low {
    background-color: #4CAF50;  /* Vert pour 0-25% */
}

.stressmeter-progress.level-medium {
    background-color: #FFEB3B;  /* Jaune pour 26-50% */
}

.stressmeter-progress.level-high {
    background-color: #FF9800;  /* Orange pour 51-75% */
}

.stressmeter-progress.level-critical {
    background-color: #F44336;  /* Rouge pour 76-100% */
}

.stressmeter-value {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}
