.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background-color: #E9FFBF;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    gap: 12px;
}

.sidebar-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s;
}

.sidebar-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

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

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #333;
    line-height: 1;
}


.menu-container {
    padding: 10px 15px;
    flex: 1;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: rgba(0,0,0,0.05);
}

.menu-item.active {
    background-color: white;
    font-weight: 700;
}

.menu-item.start-quarter {
    border-radius: 8px;
    margin-top: 8px;
}

.icon-container {
    width: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.start-quarter-icon {
    width: 18px;
    height: 18px;
    background-color: #A6F906;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-menu-container {
    padding: 10px 15px 20px 15px;
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.05);
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 6px;
    margin: 0 2px;
}

.bottom-nav-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.bottom-nav-item.active {
    background-color: #f0f0f0;
    color: #333;
}

.bottom-nav-item i {
    font-size: 18px;
    color: #333;
    margin-bottom: 3px;
}

.bottom-nav-item span {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.bottom-nav-quarter-icon {
    width: 20px;
    height: 20px;
    background-color: #A6F906;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
}

.bottom-nav-quarter-icon i {
    font-size: 10px;
    color: #333;
    margin-bottom: 0;
}

.bottom-nav-item.start-quarter span {
    font-size: 10px;
}

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
    }

    body {
        margin-left: 0 !important;
        padding-bottom: 65px;
    }

    .main-content {
        width: 100vw !important;
        padding-bottom: 65px;
    }
}