.admin-title{background-color:#008f76;}
.sidebar {
    width: 250px;
    background: white;
    color: white;
    flex-shrink: 0;
    padding:  0; /* Increased padding for top and bottom */
}
#sidebar{
    background-color: #F6F9FC;
    margin-top: -17px;
}
.sidebar h2 {
    text-align: center;
    padding: 15px 0; 
    font-size: 20px; /* Adjust font size */
}

.sidebar ul {
    background-color: #F6F9FC;
    list-style-type: none;
    padding: 0;
    margin-top: 20px; /* Added space at the top of the menu */
}

.sidebar ul li {
    padding: 5px 20px; /* Slightly reduced padding for a tighter design */
    border-bottom: 1px solid #e9e9e9;
    
}

.sidebar ul li a {

    color: rgb(66, 66, 66);
    text-decoration: none;
    display: block;
    padding: 15px;
    font-weight: 900;
}

.sidebar ul li a:hover, .sidebar ul li a:focus {
    background: #dadada;
}

.content {
    flex: 1;
    padding: 20px;
    overflow: auto; /* Added overflow for scrolling */
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        position: fixed;
        height: 100%;
        z-index: 1;
        display: none;
    }
    .content {
        margin-left: 0;
    }
    .sidebar.active {
        display: block;
    }
}

.menu-btn {
    display: none;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
}
