/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

/* Harita Stiller */
.pharmacy-popup h5 {
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

.pharmacy-popup p {
    margin-bottom: 5px;
    font-size: 14px;
}

.pharmacy-popup .btn {
    margin-top: 8px;
}

/* Eczane Kart Stilleri */
.card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.card-text {
    font-size: 0.9rem;
    color: #555;
}

.card-text i {
    width: 16px;
    text-align: center;
    margin-right: 5px;
}

.card-footer {
    background-color: rgba(0, 0, 0, 0.02);
    padding: 0.75rem 1.25rem;
    border-top: none;
}

.card.border-danger {
    border: 1px solid #dc3545 !important;
}

/* Mobil Uyumluluk */
@media (max-width: 767.98px) {
    .card {
        margin-bottom: 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .card-footer .btn {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Animasyonlar */
.loading .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Harita Stili */
.map-container {
    height: 400px;
    width: 100%;
    margin-bottom: 2rem;
}

/* Yükleniyor Ekranı */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Eczane Kartları */
.eczane-card {
    height: 100%;
    transition: transform 0.2s;
}

.eczane-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.eczane-card .card-body {
    display: flex;
    flex-direction: column;
}

.eczane-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.eczane-card .card-text {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.eczane-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* Liste Görünümü */
.table th {
    background-color: #f8f9fa;
}

/* Butonlar */
.btn-group .btn {
    padding: 0.375rem 0.75rem;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .eczane-card {
        margin-bottom: 1rem;
    }
}

/* Nöbetçi Eczane İkonu */
.nobetci-icon {
    color: #dc3545;
    margin-right: 5px;
}

/* Harita Popup */
.leaflet-popup-content {
    margin: 10px;
}

.leaflet-popup-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.leaflet-popup-content p {
    margin-bottom: 5px;
}

/* Footer */
footer {
    margin-top: auto;
} 