.location-map-placeholder {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    margin-top: 15px;
}

.location-map-placeholder .fa-map-marked-alt {
    font-size: 48px;
    margin-bottom: 10px;
}

.location-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 12px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    max-width: 250px;
    min-width: 200px;
    cursor: pointer;
}

.location-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    color: #333;
}

.location-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.location-title {
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-desc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}
body.dark-mode .location-bubble {
    background-color: var(--bg-tertiary);
    border-color: var(--border-secondary);
}

body.dark-mode .location-icon {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

body.dark-mode .location-title {
    color: var(--text-primary);
}
