/* Sidebar container */
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #333;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%);
    transition: transform 0.18s ease;
}

.sidebar.active {
    transform: translateX(0);
}

/* Sidebar links */
.sidebar .button {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    background-color: #333;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

/* Hover effect for sidebar links */
.sidebar .button:hover {
    background-color: #575757; /* Slightly lighter on hover */
}

/* Open sidebar button */
.open-btn {
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 35px;
    position: static;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: -8px;
    margin-left: -8px;
    padding: 20px 26px;
}

/* Hover effect for open button */
.open-btn:hover {
    background-color: #575757; /* Slightly lighter on hover */
}

.close-btn {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    background-color: #333;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    padding-top: 33px;
    padding-bottom: 32px;
}

.close-btn:hover {
    background-color: #575757;
}

