/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

.left-sidebar {
    position: sticky;
    top: 80px; /* Matches navbar height */
    width: 25%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding-top: 0; /* No extra padding */
    /* No custom font applied here */
}

/* Scrollbar hidden by default, appears on hover */
.left-sidebar::-webkit-scrollbar {
    width: 0px;
}

.left-sidebar:hover::-webkit-scrollbar {
    width: 8px;
}

.left-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.left-sidebar:hover::-webkit-scrollbar-thumb {
    background-color: lightgray;
    border-radius: 10px;
}

.left-sidebar-title {
    font-size: 20px;
    font-weight: bold;
    color: black;
    padding: 0;
    margin: 0;
    /* Title remains unchanged (default/inherited font) */
}

.left-sidebar ul {
    list-style: none;
    padding: 0;
}

.left-sidebar ul li a {
    text-decoration: none;
    color: black;
    font-size: 12px;
    font-family: 'Poppins', sans-serif; /* Poppins font applied to list items */
}

.left-sidebar ul li a:hover {
    color: #007BFF;
}

.dropdown-icon {
    width: 15px;
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}
