.airbnb-aggregated-rating {
    max-width: 420px;
    /* margin: 2em auto; */
    padding: 28px 25px;
    border: 1px solid #b4b4b4 !important;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    /* box-shadow: 0 6px 20px rgb(255 90 95 / 8%); */
    font-family: system-ui, -apple-system, sans-serif;
}

.airbnb-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

/* LOGO AIRBNB – cambia qui la dimensione */
.airbnb-logo svg {
    width: 170px;           /* ? modifica questo valore (es. 80px, 100px, 140px, 180px...) */
    height: auto;
    max-width: 100%;
}

.airbnb-title {
    margin: 0;
    color: #222;
    font-size: 15px;
    font-weight: 100;
}

.airbnb-rating-number {
    font-size: 1.7em;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin: 8px 0 12px;
}

/* STELLE – Unicode puro, affidabile su tutti i browser */
.airbnb-stars {
    position: relative;
    display: inline-block;
    font-size: 3em;               /* ? dimensione stelle – aumenta se vuoi più grandi */
    line-height: 1;
    color: #ddd;                  /* stelle di sfondo grigie */
    margin: 8px 0 16px;
}

.airbnb-stars-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    color: #ffcc00;               /* giallo dorato */
    white-space: nowrap;
}

/* Migliora rendering stelle su Windows / vari browser */
.airbnb-stars,
.airbnb-stars * {
    font-family: "Segoe UI Symbol", "Apple Color Emoji", "Segoe UI Emoji", sans-serif !important;
}

.airbnb-reviews {
    font-size: 1.05em;
    color: #555;
    line-height: 1.4;
}

/* Cestino nel backend */
.delete-row.dashicons {
    font-size: 1.4em;
    color: #c00;
    cursor: pointer;
}
.delete-row.dashicons:hover {
    color: #900;
}

/* Responsive mobile */
@media (max-width: 480px) {
    .airbnb-aggregated-rating { padding: 22px 18px; margin: 1.5em auto; }
    .airbnb-rating-number { font-size: 3.2em; }
    .airbnb-stars { font-size: 2.6em; }
    .airbnb-logo svg { width: 90px; }
}