/* Main title */
.nearby-main-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Group */
.nearby-group {
    margin-bottom: 20px;
}

/* Section title */
.nearby-group-title {
    font-size: 18px;
    font-weight: 600;
    color: #185155;
    margin-bottom: 8px;
}

/* List layout */
.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Item card */
.nearby-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Hover effect */
.nearby-item:hover {
    background: #eef6f6;
    transform: translateY(-1px);
}

/* Name */
.nearby-name {
    font-weight: 500;
    font-size: 18px;
    color: #222;
}

.nearby-drive-time {
    margin-top: 4px;
    font-size: 15px;
    color: #185155;
}

/* Rating row */
.nearby-rating {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

/* ⭐ Yelp-style stars */
.stars {
    display: inline-flex;
    gap: 2px;
}

.star {
    font-size: 18px;
}

/* Full star */
.star.full {
    color: #e00707;
}

/* Half star */
.star.half {
    color: #e00707;
    opacity: 0.5;
}

/* Empty star */
.star.empty {
    color: #ddd;
}

/* Rating number */
.rating-text {
    margin-left: 6px;
    font-size: 18px;
    color: #666;
}
