.rfg-review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.rfg-review-bubble {
    border-radius: 25px;
    padding: 15px 20px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    font-family: sans-serif;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    /* Přidána vlastnost pro plynulou změnu velikosti */
    transition: width 0.3s ease-in-out; 
}

.rfg-review-bubble::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #f1f1f1 transparent transparent;
    display: block;
    width: 0;
}

.rfg-review-time {
    font-size: 12px;
    color: #666;
    
    margin-top: auto;
    text-align: right;
}

.rfg-review-stars {
    display: flex;
    gap: 2px;
    margin: 5px 0;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

.rfg-review-stars .star {
    display: inline-block;
}

/* === Kód pro mobilní telefony === */
@media screen and (max-width: 480px) {
    .rfg-review-bubble {
        /* Nastaví šířku na 100 % a zruší omezení maximální šířky */
        width: 100%;
        max-width: 100%;
    }
}