/* Custom styles not handled by Tailwind CSS */
#map {
    height: 300px;
    width: 100%;
    z-index: 10;
}

#public-map {
    height: 300px;
    width: 100%;
    z-index: 10;
}

/* Hide SPA pages by default */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Scrollbar styling for a premium feel */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Modal styles */
#modal-backdrop {
    backdrop-filter: blur(4px);
}

/* Hide scrollbar for TikTok-style portfolio */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
