/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* Colors based on requirements */
.bg-dark-blue { background-color: #1a237e; }
.text-dark-blue { color: #1a237e; }
.bg-medium-blue { background-color: #0d6efd; }

/* Fixed Bottom Menu Mobile */
.bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1030;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.bottom-menu a {
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 12px;
}

.bottom-menu a.active {
    color: #0d6efd;
}

.bottom-menu i {
    font-size: 24px;
    display: block;
    margin-bottom: 2px;
}

/* Padding to prevent content from hiding behind bottom menu */
.content-wrapper {
    padding-bottom: 70px; 
}

/* Dashboard Sidebar (for Desktop view) */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0; 
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto; 
}
