/* ========== Expert Specific Styles (优化) ========== */

/* File item enhancements */
.file-item .file-icon {
  font-size: 18px;
}

.file-item .file-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-item .file-size {
  color: var(--gray-400);
  font-size: 11px;
}

/* Upload progress */
.upload-progress {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.upload-progress-bar {
  height: 100%;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Review status card variants */
.status-card.approved {
  background: var(--success-light);
  border: 2px solid #6ee7b7;
  border-radius: var(--radius-lg);
}

.status-card.rejected {
  background: var(--danger-light);
  border: 2px solid #fca5a5;
  border-radius: var(--radius-lg);
}

.status-card.pending {
  background: var(--warning-light);
  border: 2px solid #fcd34d;
  border-radius: var(--radius-lg);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-400);
}

.empty-state .empty-icon {
  font-size: 56px;
  margin-bottom: 14px;
}

.empty-state p {
  font-size: 15px;
}

/* Profile tabs scroll on mobile */
@media (max-width: 768px) {
  .profile-nav {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .profile-nav-item {
    padding: 12px 16px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
  }

  .profile-nav-item.active {
    border-bottom-color: var(--primary);
    background: transparent;
  }
}

/* ========== Force Change Password Page ========== */
.force-pwd-header {
  text-align: center;
  margin-bottom: 28px;
}

.force-pwd-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
}

.force-pwd-header h2 {
  font-size: 22px;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.force-pwd-header p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}
