#divMasterViewFeedback {
    max-width: 1000px;
    margin: 30px auto;
    padding: 24px;
    background-color: #f8f9fb;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
}

/* Titolo */
#titleViewFeedback {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

/* Contenitore scrollabile */
#containerListaViewFeedback {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Singola recensione */
.view-feedback-item {
    background-color: #ffffff;
    border-left: 5px solid #3498db;
    padding: 14px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Header feedback */
.view-feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.view-feedback-nome {
    font-weight: 600;
    font-size: 14px;
    color: #2c3e50;
}

.view-feedback-data {
    font-size: 11px;
    color: #888;
}

/* Oggetto */
.view-feedback-oggetto {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 6px;
}

/* Testo */
.view-feedback-testo {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    white-space: pre-wrap;
}

.buttonLike.liked {
    background-color: #3498db;   /* bottone blu quando cliccato */
    color: white;                 /* testo bianco */
    border-color: #2980b9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.buttonLike.liked:hover {
    background-color: #2980b9;
}

.feedback-stars {
    color: #f1c40f;
    font-size: 14px;
    margin-bottom: 4px;
}

#infoAccessoFeedback {
    background-color: #f3f4f6; /* leggero grigio chiaro */
    border-left: 4px solid #007bff; /* linea blu a sinistra */
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #333333;
}