.google-place-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.place-name {
    color: #1a1a1a;
    margin: 0 0 12px 0;
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.3;
}

.place-rating {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffa500;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.rating-value {
    font-weight: 600;
    color: #333;
}

.review-count {
    color: #666;
    font-size: 0.9em;
}

.google-place-card > div {
    margin-bottom: 12px;
    line-height: 1.6;
}

.google-place-card strong {
    color: #444;
    font-weight: 600;
}

.google-place-card a {
    color: #1a73e8;
    text-decoration: none;
}

.google-place-card a:hover {
    text-decoration: underline;
}

.hours-list {
    margin: 8px 0 0 0;
    padding-left: 20px;
    list-style: none;
}

.hours-list li {
    font-size: 0.95em;
    margin: 4px 0;
    padding: 2px 0;
    border-bottom: 1px solid #f5f5f5;
}

.hours-list li:last-child {
    border-bottom: none;
}

.status-open {
    color: #137333;
    font-weight: 600;
    background: #e6f4ea;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85em;
}

.status-closed {
    color: #d93025;
    font-weight: 600;
    background: #fce8e6;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85em;
}

.place-error {
    background: #fef7f0;
    border: 1px solid #fdd663;
    color: #b45309;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .google-place-card {
        padding: 16px;
        margin: 16px 0;
    }

    .place-name {
        font-size: 1.3em;
    }
}