/* General body reset */
body {
    margin: 0;
    padding: 0;
    padding-top: 56px;
    padding-bottom: 60px;
    background: #fff;
    color: #333;
}

/* Global gradient */
.header-gradient {
    background: linear-gradient(90deg, violet, purple, orange);
}

/* Sidebar */
#account-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    color: black;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

#account-sidebar.open {
    right: 0;
}

/* Overlay */
#sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 9998;
}

#sidebar-overlay.active {
    display: block;
}

/* Sidebar links */
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-item:hover {
    background: #f4f4f4;
}

/* Orange button */
.btn-orange {
    background: white;
    color: #e97923;
    padding: 6px 12px;
    border-radius: 5px;
    display: inline-block;
}
