/* Style for the hamburger menu icon in the upper-left corner */
#hamburger-menu {
    position: fixed;
    top: 0px;
    left: 20px;
    z-index: 100;
    color: #333;
    font-size: 30px;
    cursor: pointer;
}

/* Style for the sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px; /* Initially hide the sidebar */
    width: 250px;
    height: 100%;
    background-color: #2c3e50; /* Dark slate color for contrast */
    color: #ecf0f1;
    padding-top: 20px;
    display: block;
    transition: left 0.3s ease; /* Smooth transition when toggling */
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2); /* Subtle shadow on the sidebar */
}

/* Sidebar when active (visible) */
.sidebar.active {
    left: 0; /* Slide the sidebar into view */
}

/* Sidebar links */
.sidebar a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 18px;
    padding: 15px;
    display: block;
}

/* Hover effect for sidebar links */
.sidebar a:hover {
    background-color: #34495e; /* Slightly darker shade for hover */
}

/* Bottom navbar style */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2980b9; /* Muted blue color */
    padding: 10px 0;
    z-index: 999;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15); /* Shadow above navbar */
}

.bottom-navbar .nav-item {
    flex: 1;
    text-align: center;
}

.bottom-navbar .nav-link {
    color: #ecf0f1;
    font-size: 18px;
}

.bottom-navbar .nav-link:hover {
    color: #f1c40f; /* Gold hover color for contrast */
}

/* Main content padding to avoid overlap with the bottom navbar */
.main-content {
    margin-bottom: 60px; /* Adjust based on the navbar height */
}

/* Custom card styles for statistics */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Soft shadow */
    background-color: #ffffff; /* Clean white for card background */
    color: #34495e;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: bold;
    color: #2980b9; /* Muted blue for titles */
}

.card-text {
    font-size: 1.5rem;
    color: #2c3e50;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #hamburger-menu {
        top: 15px;
        left: 15px;
    }

    .sidebar {
        width: 200px; /* Adjust the sidebar width for smaller screens */
    }
}

/* Custom styles for heading elements */
h1, h2, h3, h4, h5, h6 {
    color: #4a90e2; /* Custom blue color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Light shadow */
}
