/* Contenedor principal del ranking */
#moodRanking {
    width: 100%;            /* 300px en la sidebar, 100% de ese espacio */
    background: transparent;
    padding: 5px;
}

/* Cada fila (mood-rank-row) */
.mood-rank-row {
    display: flex;
    flex-direction: column; 
    margin-bottom: 10px;
}

/* Info: emoji + label */
.mood-rank-info {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}
.mood-emoji {
    width: 30px; 
    text-align: center;
    font-size: 1.4rem; 
    margin-right: 5px;
}
.mood-label {
    font-size: 0.85rem;
    color: #555;
}

/* Barra contenedora */
.mood-bar {
    background-color: #eee;
    border-radius: 4px;
    position: relative;
    height: 20px;
    overflow: hidden;
}

/* Barra interna */
.mood-bar-fill {
    background-color: #76a5af;
    height: 100%;
    text-align: right;
    padding-right: 5px; 
    box-sizing: border-box;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 4px;
    transition: width 0.3s ease;
}
