#menu-container {
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
    padding: 0 0 100px 0;
}

.menu-page-wrapper {
    background-color: #f5f5f5;
    padding: 20px 5%;
}

.menu-profile-header {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.profile-avatar {
    width: 60px;
    height: 60px;
    background-color: #8b5cf6;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.profile-id {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.menu-items-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Base button style */
.menu-action-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 16px 20px;
    border-radius: 12px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-family: inherit;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn-text {
    flex: 1;
    text-align: left;
    margin-right: 15px;
}

/* Outline style specified by user */
.menu-action-btn.outline-btn {
    background-color: #ffffff;
    border: 1px solid transparent;
    /* Replaces the hard e0e0e0 outline for a shadowy-look */
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.menu-action-btn:active {
    transform: scale(0.98);
}

.menu-action-btn:hover {
    background-color: var(--bg-surface-hover, #ebebeb);
    box-shadow: var(--shadow-card-hover, 0 4px 20px rgba(0, 0, 0, 0.15));
}

.chevron {
    font-size: 1.5rem;
    color: #aaa;
    line-height: 1;
}

.logout-btn {
    color: #dc3545 !important;
    border-color: #ffcccc !important;
}

.logout-btn .chevron {
    color: #dc3545;
    opacity: 0.7;
}

.logout-btn:hover {
    background-color: #fff5f5 !important;
}




