/* Main Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

/* Map Container */
.map-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
}

/* Feedback Button */
.feedback-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.feedback-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 15px;
    background-color: #007bff;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.feedback-icon {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.feedback-text {
    font-size: 14px;
    white-space: nowrap;
}

/* Feedback button in popup */
.feedback-popup-btn {
    font-size: 12px;
    padding: 3px 8px;
    display: block;
    width: 100%;
    text-align: center;
}

/* Center on Park Button */
.center-park-btn {
    width: 30px;
    height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: white;
}

.center-park-btn span {
    font-size: 16px;
}

.center-park-btn:hover {
    background-color: #f0f0f0;
}

/* Layer Switcher Buttons */
.layer-button {
    width: 30px;
    height: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: white;
}

.layer-button span {
    font-size: 16px;
}

.layer-button:hover {
    background-color: #f0f0f0;
}

.layer-button.active {
    background-color: #e3e3e3;
}

/* Animation for feedback button */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }
}

/* Custom popup styling */
.mapboxgl-popup-content {
    padding: 10px;
    max-width: 220px;
}

.mapboxgl-popup-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.mapboxgl-popup-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feedback-btn {
        padding: 8px 12px;
    }
    
    .feedback-text {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .feedback-btn-container {
        bottom: 15px;
        right: 15px;
    }
    
    .feedback-btn {
        padding: 6px 10px;
    }
    
    .feedback-text {
        font-size: 12px;
    }
}

/* Footer styling */
.footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 0;
    font-size: 12px;
    z-index: 900;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-link {
    color: #333;
    text-decoration: none;
    padding: 0 10px;
    font-weight: 500;
}

.footer-link:hover {
    color: #007bff;
    text-decoration: underline;
}

.footer-divider {
    color: #aaa;
}

/* Modal content styling */
.modal-body h4 {
    color: #007bff;
    margin-bottom: 15px;
}

.modal-body h5 {
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body p {
    text-align: justify;
    line-height: 1.5;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 5px;
}

/* Responsive adjustments for footer and modals */
@media (max-width: 576px) {
    .footer-menu {
        font-size: 11px;
        padding: 4px 0;
    }
    
    .footer-link {
        padding: 0 5px;
    }
    
    .modal-body {
        font-size: 14px;
    }
} 