
body {
    padding-top: 90px; /* Adjust this based on the actual header height */
}
.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.menu-btn:hover {
    color: #f8f9fa;
}
.sidebar {
    height: 500px;
    width: 250px;
    position: fixed;
    top: 55px;
    right: -250px;
    background-color: #f8f9fa;
    transition: right 0.3s ease-in-out;
    padding-top: 40px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.sidebar a {
    padding: 12px 20px;
    text-decoration: none;
    font-size: 18px;
    color: #333;
    display: block;
}
.sidebar a:hover {
    background-color: #ddd;
}
.sidebar .close-btn {
    position: absolute;
    top: 105px;
    right: 25px;
    font-size: 35px;
    cursor: pointer;
    color: red;
}
.sidebar .close-btn:hover {
    color: #0056b3;
}
.sidebar-welcome {
    padding: 15px;
    background-color: #343a40;
    color: white;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #555;
}
