/* RESET */
body {
    margin: 0;
    background: #f5ede4;
    font-family: Arial, sans-serif;
}

/* HEADER */
.topbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: #4b2a16;
    color: white;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.header-logo {
    height: 40px;
}

.menu-btn {
    font-size: 30px;
    cursor: pointer;
    margin-right: 10px;
    display: none;
}

.logout-btn {
    background: #fff;
    color: #4b2a16;
    border: none;
}
.logout-btn:hover {
    background: #e8cdb3;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 240px;
    height: calc(100vh - 60px);
    background: #4b2a16;
    color: white;
    overflow-y: auto;
    z-index: 9999;
    transition: transform .3s ease;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.sidebar-logo {
    width: 110px;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* MENU ITEMS */
.sidebar nav a {
    display: block;
    color: #fcefe2;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
}

.sidebar nav a:hover {
    background: #6a3b1f;
}

/* CONTENT */
.content {
    margin-left: 240px;
    padding: 80px 20px 20px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    
    .menu-btn {
        display: inline-block;
    }

    .sidebar {
        transform: translateX(-260px);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .close-btn {
        display: inline-block;
    }

    .content {
        margin-left: 0;
        padding-top: 80px;
    }
}
