/* static/css/sidebar_v2.css */
.sidebar_v2 {
    height: 100%;
    width: 0;   /* Sidebar is initially closed (to make it slightly visible adjust that here) */
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background-color: #1a1a1a;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    font-family: "Roboto Mono", mono, sans;
}

.sidebar_v2[style*="width: 250px"] {
    width: 375px !important;  /* Override inline style width with !important */
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar_v2::-webkit-scrollbar {
    display: none;
}

.sidebar_v2 {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.close-btn_v2 {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: #e5e5e5;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-section {
    padding: 20px;
    border-bottom: 1px solid #333;
}

.menu-section h3 {
    color: #e5e5e5;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.menu-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-section ul li {
    margin: 10px 0;
}

.menu-section ul li a {
    color: #e5e5e5;  /* Lighter font color */
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 8px 0;
    transition: color 0.3s;
}

.menu-section ul li a:hover {
    color: #E5A028;
}

/* Account section specific styles */
.account-links {
    background-color: #222;
}

.account-links .balance-link {
    color: #E5A028;
    font-weight: 500;
}

/* Footer links section */
.footer-links {
    margin-top: auto;
}

/* Menu controls */
.menu-controls {
    position: fixed;
    z-index: 1000;
}

.hamburger-control {
    top: 15px;
    left: 15px;
}

.retro-control {
    bottom: 15px;
    left: 15px;
}

/* Base menu button styles */
.menu-button {
    background: none;
    border: none;
    color: #e5e5e5;
    cursor: pointer;
    transition: all 0.3s;
}

/* Specific styles for the Retro Menu button */
.retro-control .menu-button {
    padding: 8px 12px;
    border: 1px solid #404040;
    border-radius: 4px;
    font-family: "Roboto Mono", mono, sans;
    font-size: 14px;
}

.retro-control .menu-button:hover {
    background-color: #E5A028;
    color: #000;
    border-color: #D99E36;
}

/* Styles for the menu text */
.hamburger-control .menu-button {
    padding: 8px 24px;
    border: 1px solid #404040;  /* Same border as Retro Menu button */
    border-radius: 4px;  /* Same border radius as Retro Menu button */
    font-family: "Roboto Mono", mono, sans;
    font-size: 14px;  /* Match Retro Menu button size */
    color: #e5e5e5;
}

.hamburger-control .menu-button:hover {  /* Same hover effect as Retro Menu button */
    background-color: #E5A028;
    color: #000;
    border-color: #D99E36;
}

