.card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.map-container {
    height: 300px;
    background-color: #f8f9fa;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


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

.modal-content {
    border-radius: 0.75rem;
    overflow: hidden;
}


.transport-card {
    border-radius: 12px;
    overflow: hidden;
}

.transport-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transport-list li {
    transition: all 0.3s ease;
}

.transport-list li:hover {
    transform: translateX(5px);
}

.transport-card .card-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.gradient-text {
    background: linear-gradient(90deg, #533f39, #9c460c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.metro-content {
    margin-left: -0.5rem; /* Компенсируем отступ иконок */
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #2A3547 0%, #8B0000 100%);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}