html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.topbar {
    width: 100vw;
    height: 54px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.topbar-brand {
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.topbar-logout {
    background: #fff;
    color: #00b4d8;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s;
}

.topbar-logout:hover {
    background: #48cae4;
    color: #fff;
}

.topbar-info {
    background: #fff;
    color: #764ba2;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-info:hover {
    background: #764ba2;
    color: #fff;
}

.topbar-user {
    background: #fff;
    color: #764ba2;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: background 0.2s, color 0.2s;
}
.topbar-user:hover {
    background: #764ba2;
    color: #fff;
}
.user-menu-container {
    position: relative;
}
#user-menu-dropdown {
    min-width: 140px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px #0002;
    position: absolute;
    right: 0;
    top: 48px;
    z-index: 10010;
    overflow: hidden;
    display: none;
    flex-direction: column;
    padding: 0;
}
#user-menu-dropdown button {
    width: 100%;
    padding: 10px 18px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1em;
    color: #333;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
#user-menu-dropdown button:hover {
    background: #f3f0fa;
    color: #764ba2;
}
#user-menu-dropdown button#logout-btn {
    color: #e63946;
}
#user-menu-dropdown button#logout-btn:hover {
    background: #ffeaea;
    color: #e63946;
}

.offers-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 44px;
    background: linear-gradient(90deg, rgba(102,126,234,0.65) 0%, rgba(118,75,162,0.65) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 1002;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.07);
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.offers-ticker {
    white-space: nowrap;
    font-size: 1.08em;
    font-weight: 500;
    padding-left: 32px;
    animation: ticker-scroll 30s linear infinite;
    display: inline-block;
    min-width: 100vw;
    pointer-events: none; /* Prevents pointer events except for children */
}

.offers-ticker a, .offers-ticker img {
    pointer-events: auto; /* Make links and icons clickable */
}

.offers-banner:hover .offers-ticker {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

body, html {
    padding-bottom: 44px; /* Prevent map from being hidden behind banner */
}

.sidebar {
    position: fixed;
    top: var(--topbar-h, 54px);
    right: 0;
    left: auto;
    width: 340px;
    height: calc(100vh - var(--topbar-h, 54px) - 44px);
    background: linear-gradient(135deg, rgba(102,126,234,0.82) 0%, rgba(118,75,162,0.82) 100%);
    color: #fff;
    z-index: 1003;
    box-shadow: -2px 0 8px rgba(0,0,0,0.07);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), opacity 0.2s;
    display: flex;
    flex-direction: column;
    opacity: 1;
}

.sidebar.collapsed {
    transform: translateX(320px);
    opacity: 0.7;
}

.sidebar-toggle {
    position: absolute;
    top: 12px;
    left: -22px;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #764ba2;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    font-size: 1.2em;
    z-index: 1004;
    transition: background 0.2s;
}

.sidebar-toggle:hover {
    background: #764ba2;
    color: #fff;
}

.sidebar-content {
    padding: 18px 18px 12px 18px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#offers-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1 1 auto;
}

.offer-card {
    background: rgba(255,255,255,0.28); /* More opaque */
    border-radius: 8px;
    padding: 12px 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 1em;
    position: relative;
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
    margin-top: 4px;
    cursor: pointer;
    color: #25d366;
    font-size: 1.35em;
    transition: color 0.2s;
    text-decoration: none;
}
.wa-btn:hover {
    color: #128c7e;
}
.wa-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

.sidebar-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
    margin-top: auto; /* Push to bottom */
}

.sidebar-pagination button {
    background: #fff;
    color: #764ba2;
    border: none;
    border-radius: 5px;
    padding: 4px 12px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.sidebar-pagination button:hover {
    background: #764ba2;
    color: #fff;
}

.sidebar-pagination span {
    color: #fff;
    font-size: 1em;
}

#map {
    position: absolute;
    top: var(--topbar-h, 54px);
    left: 0;
    right: 340px;
    width: calc(100vw - 340px);
    height: calc(100vh - var(--topbar-h, 54px) - 44px);
    transition: width 0.3s, left 0.3s;
}

.sidebar.collapsed ~ #map {
    right: 0;
    width: 100vw;
}

@media (max-width: 700px) {
    .sidebar {
        width: 90vw;
    }
    #map {
        right: 90vw;
        width: 10vw;
    }
    .sidebar.collapsed ~ #map {
        right: 0;
        width: 100vw;
    }
}

/* Locate Me Button */
#locate-me-btn {
    position: fixed;
    bottom: 70px;
    left: 20px;
    z-index: 1000;
    background: #0077b6;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.2s ease;
}

#locate-me-btn:hover {
    background: #005a8b;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

#locate-me-btn:active {
    transform: scale(0.95);
}

#locate-me-btn.locating {
    background: #ff6b35;
    animation: pulse-locate 1.5s infinite;
}

#locate-me-btn[style*="background: #e63946"] {
    background: #e63946 !important;
}

#locate-me-btn[style*="background: #e63946"]:hover {
    background: #c1121f !important;
}

@keyframes pulse-locate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive adjustments for locate button */
@media (max-width: 700px) {
    #locate-me-btn {
        bottom: 70px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* User location marker styles */
.user-location-marker {
    z-index: 1001 !important;
}

.user-location-marker div {
    animation: userLocationPulse 2s infinite;
}

@keyframes userLocationPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 119, 182, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 119, 182, 0); }
}

/* Remove default Leaflet popup background for custom popups */
.leaflet-popup-content-wrapper.no-leaflet-bg,
.leaflet-popup-tip-container.no-leaflet-bg {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.leaflet-popup-content.no-leaflet-bg {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove default padding and background for our custom popup */
.no-leaflet-bg .leaflet-popup-content-wrapper,
.no-leaflet-bg .leaflet-popup-tip {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Balloon style for custom popup */
.leaflet-popup-content-wrapper.no-leaflet-bg {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    position: relative;
}

.leaflet-popup-content.no-leaflet-bg {
    margin: 0 !important;
    padding: 0 !important;
}

.no-leaflet-bg .custom-balloon {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 80%, #d0eaff 100%);
    box-shadow: 0 4px 16px 0 rgba(44, 62, 80, 0.18), 0 1.5px 4px 0 rgba(44, 62, 80, 0.10);
    border-radius: 18px;
    border: 1.5px solid #b5d6f6;
    padding: 14px 14px 10px 14px;
    min-width: 240px;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.no-leaflet-bg .custom-balloon::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 18px solid #d0eaff;
    filter: drop-shadow(0 2px 2px rgba(44,62,80,0.10));
}

/* Estilos para ícones das lojas */
.leaflet-marker-icon {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Garante que os ícones das lojas sejam visíveis */
.leaflet-marker-icon[src*="stores.png"] {
    opacity: 1 !important;
    z-index: 1000;
}

/* Estilos para indicadores de oferta ativa */
.exclamation-indicator {
    background: transparent !important;
    border: none !important;
    z-index: 1001 !important;
}

.exclamation-indicator div {
    animation: pulse 2s infinite;
}

/* Estilos para indicadores de mensagem */
.message-indicator {
    background: transparent !important;
    border: none !important;
    z-index: 1002 !important;
}

.message-indicator div {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
}

@keyframes pulse-blue {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,119,182,0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0,119,182,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(0,119,182,0.3);
    }
}

/* Melhorias no popup das lojas */
.custom-balloon {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 250px;
    max-width: 300px;
}

.custom-balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

/* Estilo para ofertas ativas no popup */
.ofertas-ativas {
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.oferta-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.oferta-item:hover {
    background: #e9ecef;
    border-color: #0077b6;
}

.thumb-btn, .report-thumb-btn {
    font-size: 1.25em;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 2px;
    transition: color 0.2s, transform 0.2s;
    color: #888;
    outline: none;
}

.thumb-btn.thumb-selected, .report-thumb-btn.thumb-selected {
    color: #228B22;
    font-weight: bold;
    transform: scale(1.18);
}

.thumb-btn[data-type="down"].thumb-selected, .report-thumb-btn[data-type="down"].thumb-selected {
    color: #e63946;
}

.vote-thank {
    font-size: 0.98em;
    vertical-align: middle;
}

.vote-counter, .report-vote-counter {
    font-size: 0.95em;
    color: #555;
    margin-top: 2px;
    text-align: right;
    opacity: 0.85;
}

.offers-ticker .ticker-message {
    pointer-events: auto;
    cursor: pointer;
    transition: background 0.15s;
    border-radius: 6px;
    padding: 2px 6px;
}
.offers-ticker .ticker-message:hover {
    background: rgba(255,255,255,0.13);
}

@keyframes offer-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.95); }
    50% { box-shadow: 0 0 24px 12px rgba(34, 197, 94, 0.45); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes offer-shake {
    0% { transform: translateX(0); }
    15% { transform: translateX(-8px); }
    30% { transform: translateX(8px); }
    45% { transform: translateX(-6px); }
    60% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
    90% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}
.offer-new-pulse {
    animation: offer-shake 0.6s cubic-bezier(.36,.07,.19,.97) both;
    border: 3px solid #22c55e;
    z-index: 10;
}

.map-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 54px;
    margin-bottom: 10px;
    padding: 12px 0 0 0;
    background: none;
    z-index: 1002;
}
.topbar-filters {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: 24px;
}
.map-filter-btn {
    font-size: 1.08em;
    font-weight: 600;
    padding: 7px 22px;
    border-radius: 22px;
    border: 2px solid #764ba2;
    background: #fff;
    color: #764ba2;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    outline: none;
    margin: 0;
    height: 38px;
    display: flex;
    align-items: center;
}
.map-filter-btn.selected, .map-filter-btn:active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: 2px solid #764ba2;
}
.map-filter-btn:hover:not(.selected) {
    background: #f3f0fa;
    color: #764ba2;
}
@media (max-width: 900px) {
    .topbar-filters {
        gap: 8px;
        margin-left: 8px;
    }
    .map-filter-btn {
        padding: 7px 10px;
        font-size: 0.98em;
    }
}
@media (max-width: 700px) {
    .map-filters {
        flex-direction: column;
        gap: 10px;
        margin-top: 54px;
    }
    /* Keep buttons inline and avoid stretching full width */
    .map-filter-btn {
        width: auto;
        max-width: none;
        display: inline-flex;
    }
}

/* Topbar responsive behavior */
@media (max-width: 900px) {
    .topbar {
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 8px;
        height: auto;
    }
    .topbar-brand {
        font-size: 1.3em;
    }
    .topbar-filters {
        order: 3;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding: 6px 0;
        margin-left: 0;
        gap: 10px;
    }
    .map-filter-btn {
        flex: 0 0 auto;
        padding: 7px 14px;
        font-size: 0.98em;
    }
}

/* Stack map filter buttons vertically on very small screens */
@media (max-width: 520px) {
    .topbar {
        align-items: flex-start;
    }
    .topbar-filters {
        order: 3;
        width: 100%;
        /* Keep a horizontal scrollable row on very small screens to avoid stacking */
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding: 6px 0 10px 0;
        gap: 8px;
    }
    .map-filter-btn {
        width: auto;
        max-width: none;
        flex: 0 0 auto;
    }
}

/* Donation modal small-screen adjustments */
@media (max-width: 520px) {
    #donation-modal > div {
        width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 40px) !important;
        margin: 12px !important;
    }
}

/* Marker pulse animation for comments modal */
@keyframes marker-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 119, 182, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 119, 182, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 119, 182, 0);
    }
}

.marker-pulse {
    animation: marker-pulse 2s infinite;
    z-index: 1000 !important;
}

/* Floating Donation Button */
.floating-donation-btn {
    position: fixed;
    bottom: 70px; /* Above the offers banner */
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
    animation: donationPulse 3s infinite;
}

.floating-donation-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.floating-donation-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    opacity: 0.3;
    animation: donationRipple 2s infinite;
    z-index: -1;
}

@keyframes donationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes donationRipple {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Donation tooltip */
.floating-donation-btn::after {
    content: 'Apoie o projeto! 💚';
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.floating-donation-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-8px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-donation-btn {
        bottom: 60px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .floating-donation-btn::after {
        display: none;
    }
}

/* Minha Voz Modal Styles */
.voice-tab {
    transition: all 0.3s ease;
}

.voice-tab:hover {
    background: rgba(118, 75, 162, 0.1);
    color: #764ba2 !important;
}

.voice-tab.active {
    background: rgba(118, 75, 162, 0.1);
}

/* Voice tab responsive */
@media (max-width: 768px) {
    #my-voice-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    #my-voice-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .voice-tab {
        min-width: 120px;
        flex-shrink: 0;
    }
    
    #stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    #my-voice-modal > div {
        width: 95vw !important;
        max-height: 95vh !important;
    }
}

/* Delete Button Styling */
.delete-btn {
    background: #dc3545 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    opacity: 0.8 !important;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.3) !important;
}

.delete-btn:hover {
    background: #c1121f !important;
    opacity: 1 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.4) !important;
}

.delete-btn:active {
    transform: scale(0.95) !important;
}

.delete-btn:focus {
    outline: 2px solid #dc3545 !important;
    outline-offset: 2px !important;
}

/* Mobile responsive delete buttons */
@media (max-width: 700px) {
    .delete-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }
}

/* Telegram Bot Floating Button */
#telegram-bot-floating-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: #229ED9;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(34, 158, 217, 0.3);
    transition: all 0.3s ease;
}

#telegram-bot-floating-btn:hover {
    background: #1e88c7;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.4);
}

#telegram-bot-floating-btn:active {
    transform: translateY(-50%) scale(0.95);
}

#telegram-bot-floating-btn svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 700px) {
    #telegram-bot-floating-btn {
        width: 48px;
        height: 48px;
        left: 15px;
    }
    
    #telegram-bot-floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Leaflet Map Controls - Adjust zoom controls position */
.leaflet-control-zoom {
    /* Offset zoom controls by topbar height to avoid overlap */
    margin-top: calc(var(--topbar-h, 54px) + 26px) !important;
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
    margin-bottom: 5px !important; /* Ensure proper spacing between zoom buttons */
}

/* Ensure zoom controls are properly visible */
.leaflet-control-zoom a {
    background: #fff !important;
    border: 2px solid rgba(0,0,0,0.2) !important;
    color: #000 !important;
    font-weight: bold !important;
    font-size: 18px !important;
    line-height: 26px !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
}

.leaflet-control-zoom a:hover {
    background: #f4f4f4 !important;
    border-color: rgba(0,0,0,0.3) !important;
}

.leaflet-control-zoom a:active {
    background: #e6e6e6 !important;
}
