/* assets/css/style.css */

html, body {
    height: 100%; overflow: hidden; background-color: #f0f8ff;
}
body {
    display: flex; flex-direction: column;
}
/* YENİ: Navbar Logosu Stili */
.navbar-logo {
    height: 40px; /* Navbar yüksekliğine uygun bir yükseklik. İsteğe göre değiştirebilirsiniz. */
    width: auto;  /* Genişlik, orantıyı koruyarak otomatik ayarlansın */
}
.site-header {
    position: sticky; top: 0; z-index: 1020;
    text-transform: capitalize;
}
.main-content {
    flex: 1; overflow-y: auto; padding-top: 0.2rem !important; padding-bottom: 1rem !important;
}
.site-footer {
    position: sticky; bottom: 0; z-index: 1020;
}
.eczane-card {
    border: 1px solid #ddd;
}
.eczane-card:hover { 
    transform: translateY(-2px); box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}
.eczane-card .card-header { 
    background-color: #e74c3c; color: white; font-size: 1rem;
    padding: 0.4rem 0.8rem;
    /* YENİ: Eczane adları her zaman BÜYÜK HARF olacak */
    text-transform: uppercase;
}
.card-body-compact {
    padding: 0.25rem 0.6rem; /* İçerik boşluğu minimumda */
}
.card-body-compact .list-group-item {
    padding: 0.1rem 0; /* Liste elemanı boşluğu neredeyse sıfır */
    border: none; /* Liste elemanı altındaki çizgiyi kaldır */
}
.card-footer-compact {
    padding: 0.2rem 0.5rem;
    background-color: white !important;
}

.eczane-adres {
    font-size: 0.8rem; line-height: 1.3; color: #333;
    text-transform: capitalize;
}
.karsilama-mesaji {
    font-size: 0.8rem; line-height: 1.2; color: #333;
}

.btn-konum { 
    background-color: #3498db; color: white; 
}
.reklam-alani { 
    max-width: 728px; min-height: 90px; width: 100%; background-color: #e9ecef; 
    border: 2px dashed #ced4da; display: flex; align-items: center; 
    justify-content: center; color: #6c757d; margin: auto; 
}


/* YENİ: Cookie Onay Çubuğu Stilleri */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px;
    z-index: 1050;
    display: none; /* Başlangıçta gizli */
    align-items: center;
    justify-content: space-between;
}
.cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
}