/* CSS STÍLUSOK - Beilleszthető a fő stylesheetbe */
.google-review-card {
    display: inline-flex;
    align-items: center;
    /*justify-content: space-between;*/
    background-color: #1a1a1a; /* Sötét háttér a Blaster Ground stílusban */
    border: 2px solid #87E715; /* Az osztálykirándulásos flyernél is használt élénkzöld neon szín */
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'Montserrat', 'Arial', sans-serif;
    color: #ffffff;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(135, 231, 21, 0.15);
    transition: all 0.3s ease;
}

.google-review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(135, 231, 21, 0.3);
    background-color: #222222;
}

.google-brand-zone {
    display: flex;
    /*align-items: center;*/
    gap: 12px;
}

.google-icon {
    flex-shrink: 0;
}

.review-text-meta {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #e0e0e0;
}

.review-count {
    font-size: 11px;
    color: #aaaaaa;
    margin-top: 2px;
}

.google-rating-zone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.rating-number {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

/* Csillagok CSS varázslat (Unicode karakterekkel, kép nélkül) */
.stars-outer {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: #444444; /* Üres csillagok színe */
}

.stars-outer::before {
    content: "★★★★★";
}

.stars-inner {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    color: #FBBC05; /* Hivatalos Google csillag sárga */
}

.stars-inner::before {
    content: "★★★★★";
}