/* Dark Mode Foundation for BBSS */
body {
    body::-webkit-scrollbar {
    display: none; /* Hides the scrollbar entirely while keeping scroll functionality */
}
    background-color: #121212; /* Deep charcoal, not pure black */
    color: #e0e0e0;           /* Soft white for text, prevents glare */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #ffffff;           /* Bright white for headers for high contrast */
}

a {
    color: #81d4fa;           /* Soft blue for links, easy to distinguish */
}
/* Floating Navbar - Professional, low profile */
#floating-nav {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    color: #81d4fa;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

#nav-menu {
    display: none; /* Hidden by default */
    position: absolute;
    bottom: 60px;
    right: 0;
    background-color: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    width: 200px;
    max-height: 400px;
    overflow-y: auto;
}