/* =======================================
   TABLAS PROFESIONALES Y MODERNAS - MEJORADO
   ======================================= */

/* Contenedor de tabla */
.table-section {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  transition: box-shadow var(--transition-base);
}

.table-section:hover {
  box-shadow: var(--shadow-lg);
}

.table-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #fafbfc 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.table-title {
  font-size: 1.25rem;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin: 0;
}

.table-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.table-wrapper {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

/* Encabezados de tabla */
.table thead {
  background: var(--bg-tertiary);
  border-bottom: 2px solid var(--border-default);
  position: sticky;
  top: 0;
  z-index: 10;
}

.table th {
  padding: var(--space-lg);
  text-align: left;
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
  transition: all var(--transition-fast);
  font-size: 0.9125rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.table th:hover {
  background: rgba(0, 0, 0, 0.08);
  opacity: 1;
}

/* Filas de tabla */
.table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  position: relative;
}

.table tbody tr:hover {
  background-color: rgba(30, 64, 175, 0.03);
  box-shadow: inset 0 0 6px rgba(30, 64, 175, 0.05);
}

.table tbody tr:last-child {
  border-bottom: none;
}

.table td {
  padding: var(--space-lg);
  color: var(--text-secondary);
  vertical-align: middle;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.table td strong {
  color: var(--text-primary);
  font-weight: var(--fw-semibold);
}

/* Alineación */
.table th.align-center,
.table td.align-center {
  text-align: center;
}

.table th.align-right,
.table td.align-right {
  text-align: right;
}

/* Celdas especiales */
.table-cell-avatar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 200px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--text-white);
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.25), 0 4px 12px rgba(30, 64, 175, 0.15);
  transition: all var(--transition-fast);
}

.avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.35), 0 8px 20px rgba(30, 64, 175, 0.25);
}

.avatar-alt {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--border-light);
  overflow: hidden;
}

.avatar-alt img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.cell-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cell-title {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  font-size: 0.9375rem;
}

.cell-subtitle {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  opacity: 0.8;
}

/* Acciones en tabla */
.table-actions-cell {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: flex-end;
  min-width: 150px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width var(--transition-fast), height var(--transition-fast);
}

.action-btn:active::before {
  width: 100%;
  height: 100%;
}

.action-btn:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.action-btn.edit {
  color: var(--color-info);
}

.action-btn.edit:hover {
  background: var(--color-info);
  border-color: var(--color-info);
  color: var(--text-white);
}

.action-btn.delete {
  color: var(--color-error);
}

.action-btn.delete:hover {
  background: var(--color-error);
  border-color: var(--color-error);
  color: var(--text-white);
}

.action-btn.view {
  color: var(--color-primary);
}

.action-btn.view:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--text-white);
}

/* Estados */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.status-active {
  background: rgba(16, 185, 129, 0.2);
  color: #047857;
}

.status-inactive {
  background: rgba(107, 114, 128, 0.2);
  color: #374151;
}

.status-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #92400e;
}

.status-error {
  background: rgba(239, 68, 68, 0.2);
  color: #7f1d1d;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.status-dot.active {
  background: var(--color-success);
}

.status-dot.inactive {
  background: var(--border-dark);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Tabla responsiva */
@media (max-width: 768px) {
  .table-section {
    border-radius: var(--radius-md);
  }

  .table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .table-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .table {
    font-size: 0.875rem;
  }

  .table th,
  .table td {
    padding: var(--space-md);
  }

  .table-cell-avatar {
    min-width: 0;
  }

  .cell-subtitle {
    display: none;
  }

  .action-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  /* Scrollbar más visible en móvil */
  .table-wrapper {
    overflow-x: auto;
  }

  .table-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .table-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  .table-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-default);
    border-radius: var(--radius-full);
  }
}

@media (max-width: 480px) {
  .table th,
  .table td {
    padding: var(--space-sm) var(--space-md);
  }

  .table {
    font-size: 0.8125rem;
  }

  .action-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .cell-title {
    font-size: 0.9375rem;
  }

  .table-cell-avatar {
    gap: var(--space-sm);
  }

  .avatar {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }

  .avatar-alt {
    width: 34px;
    height: 34px;
  }
}

/* Paginación */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  border-top: 1px solid var(--border-light);
  background: var(--bg-secondary);
  flex-wrap: wrap;
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: all var(--transition-fast);
  font-size: 0.9375rem;
}

.pagination-item:hover:not(.disabled):not(.active) {
  border-color: var(--color-primary);
  background: rgba(30, 64, 175, 0.08);
  color: var(--color-primary);
  transform: translateY(-1px);
}

.pagination-item.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-info {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 var(--space-lg);
  white-space: nowrap;
  font-weight: var(--fw-medium);
}

.cell-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cell-title {
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.cell-subtitle {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* Acciones en tabla */
.table-actions-cell {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  justify-content: flex-end;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-fast);
  position: relative;
}

.action-btn:hover {
  background: var(--color-primary);
  color: var(--text-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.action-btn.edit {
  color: var(--color-info);
}

.action-btn.edit:hover {
  background: var(--color-info);
  color: var(--text-white);
}

.action-btn.delete {
  color: var(--color-error);
}

.action-btn.delete:hover {
  background: var(--color-error);
  color: var(--text-white);
}

.action-btn.view {
  color: var(--color-primary);
}

.action-btn.view:hover {
  background: var(--color-primary);
  color: var(--text-white);
}

/* Estados */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.status-active {
  background: rgba(16, 185, 129, 0.2);
  color: #047857;
}

.status-inactive {
  background: rgba(107, 114, 128, 0.2);
  color: #374151;
}

.status-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #92400e;
}

.status-error {
  background: rgba(239, 68, 68, 0.2);
  color: #7f1d1d;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  animation: pulse 2s infinite;
}

.status-dot.active {
  background: var(--color-success);
}

.status-dot.inactive {
  background: var(--border-dark);
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Tabla responsiva */
@media (max-width: 768px) {
  .table-section {
    border-radius: var(--radius-md);
  }

  .table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .table-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .table {
    font-size: 0.875rem;
  }

  .table th,
  .table td {
    padding: var(--space-md);
  }

  .table-cell-avatar {
    min-width: 0;
  }

  .cell-subtitle {
    display: none;
  }

  .action-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  /* Scrollbar más visible en móvil */
  .table-wrapper {
    overflow-x: auto;
  }

  .table-wrapper::-webkit-scrollbar {
    height: 6px;
  }

  .table-wrapper::-webkit-scrollbar-track {
    background: transparent;
  }

  .table-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-default);
    border-radius: var(--radius-full);
  }
}

@media (max-width: 480px) {
  .table th,
  .table td {
    padding: var(--space-sm) var(--space-md);
  }

  .table {
    font-size: 0.8125rem;
  }

  .action-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .cell-title {
    font-size: 0.9375rem;
  }

  .table-cell-avatar {
    gap: var(--space-sm);
  }

  .avatar {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}

/* Paginación */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  border-top: 1px solid var(--border-light);
  background: var(--bg-secondary);
}

.pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-primary);
  cursor: pointer;
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: all var(--transition-fast);
}

.pagination-item:hover {
  border-color: var(--color-primary);
  background: rgba(30, 64, 175, 0.1);
}

.pagination-item.active {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
}

.pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-info {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0 var(--space-lg);
  white-space: nowrap;
}

/* =======================================
   ESTILOS ESPECÍFICOS TABLA USUARIOS
   ======================================= */

/* Contenedor de tabla de usuarios */
.bo-table-container {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.bo-table-responsive {
  overflow-x: auto;
}

/* Tabla de usuarios con más espacio */
.bo-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.bo-table th {
  background: var(--bg-secondary);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  font-weight: var(--fw-semibold);
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border-default);
  white-space: nowrap;
}

.bo-table .th-content {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.bo-table .th-icon {
  font-size: 1rem;
}

.bo-table .th-text {
  font-size: 0.75rem;
}

.bo-table td {
  padding: var(--space-lg) var(--space-xl);
  vertical-align: middle;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
  font-size: 0.9rem;
}

.bo-table tbody tr {
  transition: all var(--transition-fast);
}

.bo-table tbody tr:hover {
  background: var(--bg-hover);
}

.bo-table tbody tr:last-child td {
  border-bottom: none;
}

/* Usuario info con más espacio */
.user-info {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: var(--fw-bold);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transition: all var(--transition-fast);
}

.bo-table tbody tr:hover .user-avatar {
  transform: scale(1.05);
}

.user-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.user-name {
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.user-id {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.user-email {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Badges mejorados */
.bo-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid transparent;
  white-space: nowrap;
}

.bo-badge-role {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(37, 99, 235, 0.1));
  color: var(--color-primary);
  border-color: rgba(59, 130, 246, 0.3);
}

.bo-badge-role.admin {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.1));
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.3);
}

.bo-badge-role.moderator {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(219, 39, 119, 0.1));
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.3);
}

.bo-badge-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bo-badge-status.active {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.bo-badge-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: currentColor;
  animation: pulse 2s infinite;
}

.bo-badge-status.inactive {
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.15), rgba(75, 85, 99, 0.1));
  color: var(--text-tertiary);
  border: 1px solid rgba(107, 114, 128, 0.3);
}

.bo-badge-status.inactive .status-dot {
  animation: none;
}

/* Badge variantes success/danger */
.bo-badge-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
  color: var(--color-success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.bo-badge-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.1));
  color: var(--color-error);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Form inline */
.inline-form {
  display: inline-flex;
}

/* Botones de acción mejorados */
.action-buttons {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.bo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  border: 1px solid transparent;
}

.bo-btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.bo-btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-default);
}

.bo-btn-secondary:hover {
  background: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.bo-btn-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
  border-color: rgba(245, 158, 11, 0.3);
}

.bo-btn-warning:hover {
  background: var(--color-warning);
  color: var(--text-white);
  border-color: var(--color-warning);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.bo-btn-success {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
  border-color: rgba(34, 197, 94, 0.3);
}

.bo-btn-success:hover {
  background: var(--color-success);
  color: var(--text-white);
  border-color: var(--color-success);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.bo-btn-danger {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
  border-color: rgba(239, 68, 68, 0.3);
}

.bo-btn-danger:hover {
  background: var(--color-error);
  color: var(--text-white);
  border-color: var(--color-error);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Vista cards para mobile de usuarios */
.mobile-view {
  display: none;
}

.users-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-lg);
}

.user-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.user-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-2px);
}

.user-card .card-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
}

.user-card .user-avatar {
  width: 56px;
  height: 56px;
  font-size: 1.25rem;
}

.user-card .card-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: flex-end;
}

.user-card .card-body {
  padding: var(--space-xl);
}

.user-card .card-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.user-card .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed var(--border-light);
}

.user-card .info-item:last-child {
  border-bottom: none;
}

.user-card .info-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.user-card .info-value {
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}

.user-card .card-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

/* Responsive para usuarios */
@media (max-width: 1024px) {
  .bo-table th,
  .bo-table td {
    padding: var(--space-md) var(--space-lg);
  }
  
  .user-avatar {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .desktop-view {
    display: none;
  }
  
  .mobile-view {
    display: block;
  }
}

