/* 
 * Style.css
 * Most styling is handled via Tailwind CSS Utility classes in index.html.
 * This file contains only necessary overrides or map-specific styles.
 */

/* Ensure full height for the map application */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* MapLibre Container */
#map {
    width: 100%;
    height: 100%;
}

/* Custom Scrollbar for Webkit (Chrome/Safari/Edge) to match design */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}