/* ═══════════════════════════════════════════════════
   TraMinFe — Design System
   Branding: Azul Claro (#4DA8DA) + Blanco (#FFFFFF)
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Propiedades Personalizadas CSS ─────────────────────── */
:root {
  --primary: #4DA8DA;
  --primary-dark: #3A8DBF;
  --primary-light: #7CC4E8;
  --primary-lighter: #B8DFF0;
  --primary-surface: #E8F4FD;
  --primary-50: #F0F9FF;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --success: #10B981;
  --success-light: #D1FAE5;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --info: #3B82F6;
  --info-light: #DBEAFE;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-md: 0 10px 25px rgba(77,168,218,0.1), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px rgba(77,168,218,0.15), 0 8px 16px rgba(0,0,0,0.06);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
}

/* ─── Base ──────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Accesibilidad: texto más grande para adultos mayores */
.text-accessible {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ─── Navbar ────────────────────────────────────── */
.navbar-mppd {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
  border: none;
}

.navbar-mppd .navbar-brand {
  color: var(--white) !important;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-mppd .navbar-brand i {
  font-size: 1.5rem;
}

.navbar-mppd .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.navbar-mppd .nav-link:hover,
.navbar-mppd .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.15);
}

.navbar-mppd .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

/* ─── Tarjetas ─────────────────────────────────────── */
.card-mppd {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}

.card-mppd:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-mppd .card-header {
  background: linear-gradient(135deg, var(--primary-surface) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.card-mppd .card-body {
  padding: 1.5rem;
}

/* ─── Tarjetas de Estadísticas (Panel Admin) ──────── */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.stat-card.stat-primary::before { background: var(--primary); }
.stat-card.stat-success::before { background: var(--success); }
.stat-card.stat-warning::before { background: var(--warning); }
.stat-card.stat-danger::before { background: var(--danger); }
.stat-card.stat-info::before { background: var(--info); }

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat-card .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  opacity: 0.15;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

/* ─── Botones ───────────────────────────────────── */
.btn-mppd {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-mppd:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2E7BAA 100%);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-mppd:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-mppd-lg {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

.btn-mppd-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-mppd-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-warning-mppd {
  background: #ffc107;
  color: #1a252f;
  border: 2px solid #e0a800;
  font-weight: 600;
  transition: var(--transition-fast);
}

.btn-warning-mppd:hover,
.btn-warning-mppd:focus {
  background: #d39e00;
  color: #ffffff;
  border-color: #c69500;
  box-shadow: 0 4px 12px rgba(211, 158, 0, 0.4);
}

/* Botón accesible grande para adultos mayores */
.btn-accessible {
  padding: 1.15rem 2.5rem;
  font-size: 1.2rem;
  border-radius: var(--radius-lg);
  min-height: 60px;
  min-width: 200px;
}

@media (max-width: 767.98px) {
  .btn-accessible {
    min-width: auto;
    min-height: auto;
    padding: 0.5rem 0.85rem;
    font-size: 1rem;
  }
}

/* ─── Formularios ────────────────────────────────── */
.form-control-mppd {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0.85rem 1.15rem;
  font-size: 1rem;
  color: var(--gray-800);
  transition: var(--transition-fast);
  background: var(--white);
}

.btn-toggle-password {
  border: 2px solid var(--gray-200);
  border-left: none;
  color: var(--gray-600);
  background: var(--white);
  padding: 0.85rem 1.15rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.btn-toggle-password i {
  pointer-events: none;
}

.btn-toggle-password:hover,
.btn-toggle-password:focus {
  background: var(--gray-100);
  color: var(--primary);
  border-color: var(--gray-200);
}

.form-control-mppd:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(77,168,218,0.15);
  outline: none;
}

.form-control-mppd::placeholder {
  color: var(--gray-400);
}

.form-label-mppd {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ─── Visualización de Palabra Clave ────────────── */
.keyword-display {
  background: linear-gradient(135deg, var(--primary-surface) 0%, #DCEEFB 100%);
  border: 3px solid var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.keyword-display::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(77,168,218,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.keyword-word {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.keyword-date {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-700);
}

/* ─── Insignias de Estado ────────────────────────── */
.badge-status {
  padding: 0.4em 0.85em;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── Vista Previa de Cámara ─────────────────────── */
.camera-container {
  position: relative;
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.camera-container video,
.camera-container canvas,
.camera-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.camera-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-capture {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--danger);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--danger), var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-capture:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px var(--danger), var(--shadow-lg);
}

.btn-capture:active {
  transform: scale(0.95);
}

.btn-capture::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
}

/* ─── Animación de Procesamiento ─────────────────── */
.processing-container {
  text-align: center;
  padding: 3rem 1.5rem;
}

.processing-spinner {
  width: 80px;
  height: 80px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.processing-text {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.processing-subtext {
  font-size: 0.95rem;
  color: var(--gray-400);
}

/* Animación de pulso para estado en proceso */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ─── Barra de Progreso ─────────────────────────── */
.upload-progress {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--gray-200);
  margin: 1rem 0;
}

.upload-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 4px;
  transition: width 0.3s ease;
  width: 0%;
}

/* ─── Tarjetas de Resultado ──────────────────────── */
.result-approved {
  border-color: var(--success) !important;
}

.result-approved .card-header {
  background: linear-gradient(135deg, var(--success-light) 0%, var(--white) 100%) !important;
  color: var(--success) !important;
}

.result-rejected {
  border-color: var(--danger) !important;
}

.result-rejected .card-header {
  background: linear-gradient(135deg, var(--danger-light) 0%, var(--white) 100%) !important;
  color: var(--danger) !important;
}

.result-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

/* ─── Indicador de Pasos ────────────────────────── */
.steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  position: relative;
}

.step::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gray-300);
  margin-left: 0.5rem;
}

.step:last-child::after {
  display: none;
}

.step.active {
  color: var(--primary-dark);
  font-weight: 700;
}

.step.completed {
  color: var(--success);
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.step.active .step-number {
  background: var(--primary);
  color: var(--white);
}

.step.completed .step-number {
  background: var(--success);
  color: var(--white);
}

/* ─── Página Principal ───────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2E7BAA 50%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.hero-feature {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 200px;
  text-align: center;
  transition: var(--transition);
}

.hero-feature:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.hero-feature i {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.hero-feature span {
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-action-group {
  position: relative;
  z-index: 1;
}

/* ─── Tarjeta de Autenticación ───────────────────── */
.auth-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-surface) 0%, var(--gray-50) 100%);
  padding: 3rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.auth-card.auth-card-wide {
  max-width: 520px;
}

.auth-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  color: var(--white);
}

.auth-card-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.auth-card-header p {
  opacity: 0.85;
  font-size: 0.95rem;
}

.auth-card-body {
  padding: 2rem;
}

.auth-icon {
  font-size: 2.5rem;
}

.auth-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ─── Clases de Utilidad de Interfaz ─────────────── */
.section-title {
  font-weight: 700;
  color: var(--gray-800);
}

.highlight-word {
  color: var(--primary-dark);
  font-weight: 700;
}

.card-icon-lg {
  font-size: 4rem;
}

.icon-warning {
  color: var(--warning);
}

.icon-danger {
  color: var(--danger);
}

.icon-success {
  color: var(--success);
}

.icon-muted {
  color: var(--gray-300);
}

.icon-primary {
  color: var(--primary);
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-circle-primary {
  background: var(--primary-surface);
  color: var(--primary);
}

.stat-circle-danger {
  background: var(--danger-light);
  color: var(--danger);
}

.stat-circle-success {
  background: var(--success-light);
  color: var(--success);
}

.step-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-surface);
  color: var(--primary);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.file-upload-input {
  max-width: 400px;
  margin: 0 auto;
}

/* ─── Alertas ────────────────────────────────────── */
.alert-mppd {
  border-radius: var(--radius);
  border: none;
  padding: 1rem 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-mppd i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert-success-mppd {
  background: var(--success-light);
  color: #065F46;
}

.alert-danger-mppd {
  background: var(--danger-light);
  color: #991B1B;
}

.alert-warning-mppd {
  background: var(--warning-light);
  color: #92400E;
}

.alert-info-mppd {
  background: var(--info-light);
  color: #1E40AF;
}

/* ─── Tablas ────────────────────────────────────── */
.table-mppd {
  border-collapse: separate;
  border-spacing: 0;
}

.table-mppd thead th {
  background: var(--gray-50);
  border-bottom: 2px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.85rem 1rem;
  white-space: nowrap;
}

.table-mppd tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.table-mppd tbody tr:hover {
  background: var(--primary-50);
}

/* ─── Pie de Página ──────────────────────────────── */
.footer-mppd {
  background: var(--gray-800);
  color: var(--gray-400);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer-mppd a {
  color: var(--primary-light);
  text-decoration: none;
}

.footer-mppd a:hover {
  color: var(--primary);
}

/* ─── Barra Lateral Administrador ────────────────── */
.sidebar-admin {
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  min-height: calc(100vh - 64px);
  padding: 1.5rem 0;
}

.sidebar-admin .nav-link {
  padding: 0.75rem 1.5rem;
  color: var(--gray-600);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.sidebar-admin .nav-link:hover {
  background: var(--primary-surface);
  color: var(--primary-dark);
}

.sidebar-admin .nav-link.active {
  background: var(--primary-surface);
  color: var(--primary-dark);
  border-left-color: var(--primary);
  font-weight: 600;
}

.sidebar-admin .nav-link i {
  font-size: 1.15rem;
  width: 20px;
  text-align: center;
}

/* ─── Paginación ─────────────────────────────────── */
.pagination-mppd .page-link {
  color: var(--primary);
  border-radius: var(--radius-sm);
  margin: 0 2px;
  border: 1px solid var(--gray-200);
  transition: var(--transition-fast);
}

.pagination-mppd .page-link:hover {
  background: var(--primary-surface);
  border-color: var(--primary);
}

.pagination-mppd .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
}

/* ─── Adaptabilidad Móvil ────────────────────────── */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .keyword-word {
    font-size: 2rem;
  }

  .keyword-date {
    font-size: 1.15rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step::after {
    display: none;
  }

  .hero-features {
    gap: 1rem;
  }

  .hero-feature {
    width: 140px;
    padding: 1rem;
  }

  .sidebar-admin {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
  }

  .stat-card .stat-value {
    font-size: 1.5rem;
  }
}

/* ─── Animaciones ────────────────────────────────── */
.fade-in {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Utilidades ─────────────────────────────────── */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  flex: 1;
}

.instructions-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}

.instructions-list li {
  counter-increment: steps;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  font-size: 1.05rem;
  border-left: 3px solid var(--primary);
}

.instructions-list li::before {
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
