
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
}

.navbar {
    background-color: #2c3e50;
    padding: 1rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-menu {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.profile-menu img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
    border: 2px solid white;
}

.overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.overlay.show {
    display: block;
}

.sidebar {
    height: 100%;
    width: 320px;
    position: fixed;
    top: 0;
    right: -400px;
    background-color: #fff;
    transition: 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 40px;
    overflow-y: auto;
}

.sidebar.open {
    right: 0;
}

.sidebar .close-btn {
    text-align: right;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.sidebar img {
    object-fit: cover;
}

.sidebar h5 {
    margin-bottom: 0;
}

.sidebar small {
    color: #777;
}

.sidebar ul {
    padding-left: 0;
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.sidebar ul li a:hover {
    color: #3498db;
}

.sidebar h6 {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.sidebar .btn-outline-secondary {
    font-size: 13px;
    padding: 3px 12px;
    margin-top: 5px;
}

.sidebar .btn-danger {
    font-size: 14px;
}

