/* Sidebar and main layout */
#sidebarCol {
    width: 17%;
    min-width: 200px;
    position: fixed;
    top: 110px;
    left: 0;
    bottom: 0;
    background-color: white;
    box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 2px 6px rgba(60, 64, 67, 0.15);
    z-index: 1000;
    overflow-y: auto;
}

#side_bar {
    display: block;
    padding: 10px;
}

.shead {
    border-bottom: 2px solid #0f5937;
    font-size: 16px;
    padding: 5px 7px;
    background-color: #0f5937;
    color: white;
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
    text-align: center;
    text-shadow: 1px 1px 1px black;
    margin-bottom: 10px;
}

.category-div {
    overflow-y: auto;
    max-height: 300px;
    margin-bottom: 20px;
}

.category-div a {
    color: #212529;
    text-decoration: none;
}

.category-div a:hover {
    color: #0f5937;
}

.prashadrop {
    /* font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; */
    font-size: 15px;
    margin: 5px 10%;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.prashadrop:hover {
    background-color: #e0f7fa;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: white;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #95aca0;
    border-radius: 1px;
    border: 3px solid #f0f0f0;
}

/* Hamburger icon styling */
.hamburger {
    font-size: 21px;
    cursor: pointer;
    display: none;
    position: fixed;
    top: 63px;
    left: 6px;
    z-index: 1100;
    background-color: var(--hover-color);
    padding: 2px 6px;
    border-radius: 4px;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}


/* Close button styling inside sidebar */


/* Responsive adjustments */
@media only screen and (max-width: 750px) {
    .hamburger {
        display: block;
    }
    #sidebarCol {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background-color: white;
        box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 2px 6px rgba(60, 64, 67, 0.15);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    #sidebarCol.open {
        left: 0;
    }
    .close-btn {
    font-size: 20px;
    cursor: pointer;
    background-color: #c21010;
    border: none;
    padding: 3px 11px;
    border-radius: 27px;
    float: right;
    margin: 10px;
}
}
