/* Estilos para el sistema de calificación con estrellas */
.satisfaction-stars {
    display: inline-block;
    font-size: 32px;
    line-height: 1;
}

.satisfaction-stars .star {
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    margin: 0 2px;
}

.satisfaction-stars .star:hover {
    transform: scale(1.2);
}

.satisfaction-stars .star.star-hover {
    color: #ffc107;
}

.satisfaction-stars .star.star-selected {
    color: #ffc107;
}

.satisfaction-stars .star.star-rated {
    cursor: default;
}

.satisfaction-stars .star.star-rated:hover {
    transform: none;
}

/* Panel de calificación */
.panel-default > .panel-heading {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-default > .panel-body {
    text-align: center;
    padding: 20px;
}
