/* Drawer Container */
.drawer {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
    padding-top: 5px;
}
.fa-bars
{
    padding: 10px;
}
/* Drawer Header */
.drawer-header {
    padding: 20px;
    color: white;
    font-size: 22px;
    font-weight: bold;
    background-color: #01484c;
    display: flex;
    justify-content: space-between;
    position: static;
}

/* Drawer Links */
.drawer a {
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    display: block;
    transition: 0.3s ease;
    border-bottom: 1px solid #f4f4f4; /* Subtle divider between links */
}

.drawer a:hover {
    background-color: #f1f1f1; /* Light hover effect */
}

/* Close Drawer Button */
.drawer .close-drawer {
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 15px; /* Adjust if needed */
    right: 20px; /* Align to the right end */
    background: none;
    border: none;
    outline: none;
}

.drawer .close-drawer:hover {
    color: #ccc;
}

/* Open Drawer State */
.drawer.open {
    width: 250px;
}

/* Divider for separating sections */
.divider {
    border-top: 1px solid #dcdcdc;
    margin: 20px 0;
}

/* Logout Link Styling */
.logout-link {
    color: white;
    background-color: #01484c;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 0 20px 20px 20px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    transition: background-color 0.3s ease;
}

.logout-link:hover {
    background-color: #01373a; /* Darker blue on hover */
}


/* Drawer Icon and Spacing */
.drawer i {
    margin-right: 10px; /* Adds space between icon and text */
    color: white; /* Ensure icons match the color of the text */
}
