/* Простые стили для карты без лишних наворотов */

.tour-map-container {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.tour-map-header {
    background: #007cba;
    color: white;
    padding: 12px 16px;
    font-weight: 600;
}

.tour-map {
    height: 400px;
    width: 100%;
    position: relative;
}

.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.tour-map-container.loaded .map-loading {
    display: none;
}

.meeting-point-info {
    padding: 12px 16px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
}

.map-actions {
    padding: 12px 16px;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 8px;
}

.map-action-btn {
    padding: 6px 12px;
    background: white;
    border: 1px solid #007cba;
    color: #007cba;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.map-action-btn:hover {
    background: #007cba;
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-map {
        height: 300px;
    }
} 