/* ============================================ */
/* CRITICAL FIX: ZERO TOP SPACING */
/* ============================================ */

/* Tailwind Preflight should handle most, but strictly enforce: */
* {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #111621;
    /* background-dark */
}

/* Glassmorphism Utility (The "Pula" Mask) */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glass-effect:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Views - ZERO top padding, normal sides */
.view {
    padding-top: 0 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 16px !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
}

@media (min-width: 1024px) {
    .view {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
    }
}

/* Parent containers - zero spacing */
#views-parent,
#main-content {
    /* Allow some padding for aesthetics, but reset margins */
    margin: 0 !important;
}

/* Force view titles to be tight to top */
.page-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ============================================ */
/* SCROLLBAR STYLING */
/* ============================================ */

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1e2433;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #2D3548;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E63946;
}