/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 60px;
    right: -300px; /* initially hidden */
    width: 200px;
    height: 100vh;
    background-color: #4a5568;
    color: rgb(204, 31, 31);
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: right 0.3s ease; /* smooth transition */
}

.sidebar ul li {
    padding: 10px;
    margin: 0;
    font-size: larger;
    font: 600;
    text-decoration: none;
}

.sidebar ul li a {
    text-decoration: none;
    color: aqua;
}

.sidebar ul li a:hover {
   background-color: blue;
}

/* Main content styles */
.content {
    margin-top: 60px; /* space for the fixed header */
    margin-right: 0; /* no margin on the right to cover the sidebar */
    padding: 20px;
        }



/* Toggle button styles */
.toggle-btn {
    position: fixed;
    top: 15px;
    right: 5px;
    font-size: medium;
    background-color: #bf2222;
    color: white;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    z-index: 1001; /* above sidebar */
    transition: background-color 0.3s ease;
}

.toggle-btn:hover {
    background-color: #555;
}

