/* Profile View Styles */

.profile-card {
    background: var(--surface-card);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    margin-bottom: 16px;
    object-fit: cover;
}

.profile-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.role-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--surface-ground);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    width: 100%;
    padding: 16px;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.menu-item:hover {
    background: var(--surface-hover);
    transform: translateY(-2px);
}

.menu-item.highlight {
    background: rgba(234, 179, 8, 0.1);
    /* Yellow tint */
    border-color: rgba(234, 179, 8, 0.3);
    color: #eab308;
    font-weight: 600;
}