.dashboard-main {
  width: 100%;
  height: 100%;
  padding: 2rem;
  box-sizing: border-box;
  background-color: #f9fafb;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.dash-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #333;
}

.dash-header p {
  margin: 0.25rem 0 0;
  color: #666;
  font-size: 1rem;
}

.dash-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.dash-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1.25rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  transition: box-shadow 0.2s ease;
}

.dash-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.dash-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #222;
}

.dash-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}


.dash-btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.dash-btn:hover {
  background-color: #1e40af;
}

.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.dash-btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background-color: #4B5563; /* Gris oscuro, sobrio */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.dash-btn:hover {
  background-color: #374151; /* Un tono más oscuro al hacer hover */
  transform: translateY(-2px); /* Pequeño efecto de elevación */
}

.dash-btn:active {
  background-color: #1f2937; /* Aún más oscuro al hacer clic */
  transform: translateY(0); /* Regresa al nivel original */
}

.dash-header-sections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Información del cliente */
.dash-client-info h2 {
  margin: 0;
  font-size: 1.6rem;
  color: #333;
}
.dash-client-info p {
  margin: 0.25rem 0 0;
  color: #666;
  font-size: 0.95rem;
}

/* Información del usuario */
.dash-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Foto del usuario */
.user-photo img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #677186; /* opcional para resaltar */
}

/* Datos del usuario */
.user-data h2 {
  margin: 0;
  font-size: 1.4rem;
  color: #222;
}
.user-data p {
  margin: 0.25rem 0 0;
  color: #555;
  font-size: 0.9rem;
}


/* Contenedor de página: ocupa toda la pantalla */
.verificacion-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px); /* Ajusta si tu header/footer ya usan espacio */
    background: linear-gradient(135deg, #e0f2fe, #fdf2f8);
    padding: 20px;
    box-sizing: border-box;
}

/* Tarjeta centrada */
.verificacion-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.6s ease-in-out;
}

/* Animación suave */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Títulos */
.verificacion-card__titulo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e3a8a;
}

/* Texto */
.verificacion-card__texto {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 10px;
}

.verificacion-card__resaltado {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Icono */
.verificacion-card__icono {
    font-size: 3.5rem;
    background: #dbeafe;
    color: #1e40af;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
