﻿/* Leaflet'teki "Leaflet | OpenStreetMap" yazısını tamamen kaldır */
.leaflet-control-attribution {
    display: none !important;
}

/* Harita ve buton stilleri */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    height: 520px;
}

#companyMap {
    width: 100%;
    height: 100%;
}

.directions-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}

    .directions-btn:hover {
        transform: translateX(-50%) translateY(-4px);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.5);
        background: linear-gradient(135deg, #b91c1c, #991b1b);
    }

.bio-btn {
    @apply bg-red-600 hover:bg-red-700 text-white font-bold px-8 py-4 rounded-full transition-all duration-300 shadow-lg hover:shadow-2xl transform hover:scale-105;
}
