:root {
  --vz-yellow: #fcb92c;
  --vz-blue: #00247d;
  --vz-red: #cf142b;
  --vz-gold: #f5a135;
  --vz-bg: #fafafa;
  --vz-card: #ffffff;
  --vz-text: #1a1a2e;
  --vz-muted: #64748b;
  --vz-border: #e2e8f0;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--vz-bg);
  color: var(--vz-text);
  min-height: 100vh;
  line-height: 1.6;
}

.vz-hero {
  background: linear-gradient(135deg, #00247d 0%, #001a5c 50%, #000d33 100%);
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vz-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(135deg, rgba(252,185,44,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 50%, rgba(207,20,43,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0,36,125,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.vz-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.vz-flag-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.vz-flag-bar .bar {
  height: 8px;
  flex: 1;
}

.vz-flag-bar .bar-yellow { background: var(--vz-yellow); }
.vz-flag-bar .bar-blue { background: var(--vz-blue); }
.vz-flag-bar .bar-red { background: var(--vz-red); }

.vz-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.vz-hero h1 span {
  background: linear-gradient(135deg, var(--vz-yellow), #fde68a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vz-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.vz-search-container {
  max-width: 640px;
  margin: -40px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.vz-search-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  padding: 8px 8px 8px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.3s ease;
}

.vz-search-box:focus-within {
  box-shadow: 0 8px 50px rgba(0,36,125,0.15);
}

.vz-search-box svg {
  width: 20px;
  height: 20px;
  color: var(--vz-muted);
  flex-shrink: 0;
}

.vz-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--vz-text);
  background: transparent;
  padding: 14px 0;
}

.vz-search-box input::placeholder {
  color: #94a3b8;
}

.vz-search-box button {
  background: linear-gradient(135deg, var(--vz-blue), #001a5c);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.vz-search-box button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,36,125,0.3);
}

.vz-search-box button:active {
  transform: translateY(0);
}

.vz-filters {
  max-width: 640px;
  margin: 16px auto 0;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.vz-filters select {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  border: 1px solid var(--vz-border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--vz-text);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.vz-filters select:focus {
  border-color: var(--vz-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0,36,125,0.1);
}

.vz-stats-bar {
  max-width: 840px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.vz-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--vz-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vz-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vz-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--vz-text);
  line-height: 1.2;
}

.vz-stat-label {
  font-size: 0.75rem;
  color: var(--vz-muted);
  font-weight: 500;
  margin-top: 4px;
}

.vz-stat-card.hospitalizado .vz-stat-number { color: var(--vz-red); }
.vz-stat-card.desaparecido .vz-stat-number { color: #ea580c; }
.vz-stat-card.localizado .vz-stat-number { color: #16a34a; }
.vz-stat-card.fallecido .vz-stat-number { color: #6b7280; }

.vz-layout-sidebar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 60px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.vz-main {
  flex: 1;
  min-width: 0;
}

.vz-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vz-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.vz-contact-card {
  background: linear-gradient(135deg, #00247d, #001a5c);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
}

.vz-contact-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.vz-contact-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.vz-whatsapp-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 16px;
  background: #25d366;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s;
  text-align: center;
}

.vz-whatsapp-btn:hover {
  background: #20bd5a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.vz-whatsapp-btn span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.vz-contact-note {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.6) !important;
  margin-bottom: 0 !important;
  margin-top: 8px;
}

/* Sidebar section header */
.vz-sidebar-section {
  background: #fff;
  border: 1px solid var(--vz-border);
  border-radius: 14px;
  padding: 16px;
}

.vz-sidebar-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--vz-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vz-sidebar-section .vz-muted {
  font-size: 0.78rem;
  color: var(--vz-muted);
  margin-bottom: 12px;
}

.vz-register-btn {
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--vz-yellow), #f59e0b);
  color: #1a1a2e;
  border: none;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  text-align: center;
  margin-top: 8px;
}

.vz-register-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

/* Centro card */
.vz-centro-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.vz-centro-item {
  background: #f8fafc;
  border: 1px solid var(--vz-border);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.8rem;
}

.vz-centro-item h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--vz-text);
}

.vz-centro-item p {
  font-size: 0.75rem;
  color: var(--vz-muted);
  margin-bottom: 2px;
  line-height: 1.5;
}

.vz-centro-item .vz-centro-needs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}

.vz-centro-item .vz-centro-need {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  background: #fef3c7;
  color: #92400e;
}

.vz-centro-item .vz-centro-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #25d366;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  margin-top: 4px;
}

.vz-centro-item .vz-centro-phone:hover {
  text-decoration: underline;
}

.vz-centro-verified {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  background: #f0fdf4;
  color: #16a34a;
  margin-left: 6px;
}

.vz-centro-empty {
  font-size: 0.8rem;
  color: var(--vz-muted);
  text-align: center;
  padding: 20px 0;
}

/* Sidebar responsive */
@media (max-width: 900px) {
  .vz-layout-sidebar {
    flex-direction: column;
    padding: 16px 12px 40px;
  }
  .vz-sidebar {
    width: 100%;
    position: static;
    order: -1;
    gap: 10px;
  }
  .vz-main {
    order: 1;
  }
  .vz-contact-card {
    padding: 14px;
  }
  .vz-contact-card h4 {
    font-size: 0.9rem;
  }
  .vz-contact-card p {
    font-size: 0.78rem;
  }
  .vz-whatsapp-btn {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
  .vz-sidebar-section {
    padding: 12px;
  }
  .vz-sidebar-section h4 {
    font-size: 0.85rem;
  }
  .vz-centro-list {
    max-height: 250px;
  }
}

.vz-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.vz-results-count {
  font-size: 0.9rem;
  color: var(--vz-muted);
  font-weight: 500;
}

.vz-results-count strong {
  color: var(--vz-text);
}

.vz-results-grid {
  display: grid;
  gap: 12px;
}

.vz-person-card {
  background: #fff;
  border: 1px solid var(--vz-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s;
}

.vz-person-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.vz-person-status {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.vz-person-status.hospitalizado { background: #fef2f2; color: var(--vz-red); }
.vz-person-status.desaparecido { background: #fff7ed; color: #ea580c; }
.vz-person-status.localizado { background: #f0fdf4; color: #16a34a; }
.vz-person-status.fallecido { background: #f3f4f6; color: #6b7280; }

.vz-person-info {
  flex: 1;
  min-width: 0;
}

.vz-person-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vz-text);
  margin-bottom: 4px;
}

.vz-person-cedula {
  font-size: 0.85rem;
  color: var(--vz-muted);
  font-weight: 500;
  margin-bottom: 6px;
}

.vz-person-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}

.vz-person-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 20px;
  color: var(--vz-muted);
  font-weight: 500;
}

.vz-person-detail-tag svg {
  width: 14px;
  height: 14px;
}

.vz-person-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  flex-shrink: 0;
}

.vz-person-badge.hospitalizado { background: #fef2f2; color: #dc2626; }
.vz-person-badge.desaparecido { background: #fff7ed; color: #ea580c; }
.vz-person-badge.localizado { background: #f0fdf4; color: #16a34a; }
.vz-person-badge.fallecido { background: #f3f4f6; color: #6b7280; }

.vz-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--vz-muted);
}

.vz-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #cbd5e1;
}

.vz-empty h3 {
  font-size: 1.2rem;
  color: var(--vz-text);
  margin-bottom: 8px;
}

.vz-empty p {
  font-size: 0.9rem;
}

.vz-loading {
  text-align: center;
  padding: 40px;
  color: var(--vz-muted);
}

.vz-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--vz-border);
  border-top-color: var(--vz-blue);
  border-radius: 50%;
  animation: vz-spin 0.7s linear infinite;
  margin: 0 auto 12px;
}

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

.vz-footer {
  background: #fff;
  border-top: 1px solid var(--vz-border);
  padding: 32px 20px;
  text-align: center;
}

.vz-footer p {
  font-size: 0.85rem;
  color: var(--vz-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.vz-footer-flag {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
}

.vz-footer-flag span {
  width: 32px;
  height: 4px;
  border-radius: 2px;
}

.vz-footer-flag .yellow { background: var(--vz-yellow); }
.vz-footer-flag .blue { background: var(--vz-blue); }
.vz-footer-flag .red { background: var(--vz-red); }

@media (max-width: 640px) {
  .vz-hero { padding: 40px 16px 60px; }
  .vz-hero h1 { font-size: 1.5rem; }
  .vz-hero p { font-size: 0.9rem; }
  .vz-search-box { flex-direction: column; padding: 12px; }
  .vz-search-box button { width: 100%; text-align: center; }
  .vz-search-box input { width: 100%; padding: 8px 0; }
  .vz-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .vz-person-card { flex-direction: column; align-items: stretch; }
  .vz-person-status { width: 40px; height: 40px; font-size: 1.1rem; }
  .vz-person-badge { align-self: flex-start; }
  .vz-back-link { font-size: 0.78rem; padding: 6px 12px; margin-bottom: 10px; }
  .vz-layout-sidebar { padding: 12px 10px 32px; }
  .vz-contact-card { padding: 12px; }
  .vz-contact-card h4 { font-size: 0.85rem; }
  .vz-contact-card p { font-size: 0.75rem; }
  .vz-whatsapp-btn { padding: 10px 12px; font-size: 0.8rem; }
  .vz-whatsapp-btn span { font-size: 0.75rem; }
  .vz-sidebar-section { padding: 10px; }
  .vz-sidebar-section h4 { font-size: 0.8rem; }
  .vz-centro-list { max-height: 200px; }
  .vz-centro-item { padding: 8px; }
  .vz-centro-item h5 { font-size: 0.8rem; }
  .vz-centro-item p { font-size: 0.7rem; }
}

.vz-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 16px;
}

.vz-back-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Report button on cards */
.vz-report-btn {
  background: none;
  border: 1px solid var(--vz-border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--vz-muted);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}

.vz-report-btn:hover {
  border-color: var(--vz-blue);
  color: var(--vz-blue);
  background: rgba(0,36,125,0.04);
}

/* Modal */
.vz-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.vz-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.vz-modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.vz-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.vz-modal-close:hover {
  background: #e2e8f0;
  color: var(--vz-text);
}

.vz-modal-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--vz-text);
}

.vz-form-group {
  margin-bottom: 14px;
}

.vz-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 4px;
}

.vz-form-group input,
.vz-form-group select,
.vz-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--vz-border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--vz-text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vz-form-group input:focus,
.vz-form-group select:focus,
.vz-form-group textarea:focus {
  border-color: var(--vz-blue);
  box-shadow: 0 0 0 3px rgba(0,36,125,0.1);
}

.vz-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.vz-btn-primary {
  background: linear-gradient(135deg, var(--vz-blue), #001a5c);
  color: #fff;
  width: 100%;
  justify-content: center;
}

.vz-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,36,125,0.25);
}

/* Person card with report button */
.vz-person-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.vz-add-btn {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.vz-add-btn-green {
  background: linear-gradient(135deg, #16a34a, #15803d);
}
.vz-add-btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(22,163,74,0.3);
}
.vz-add-btn-orange {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.vz-add-btn-orange:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,158,11,0.3);
}
.vz-upload-section {
  max-width: 640px;
  margin: 16px auto 0;
  padding: 0 20px;
}
.vz-upload-box {
  background: #fff;
  border: 1px solid var(--vz-border);
  border-radius: 12px;
  padding: 20px;
}
.vz-modal-wide {
  max-width: 640px;
}
.vz-detail-header {
  margin-bottom: 16px;
}
.vz-detail-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.vz-detail-meta {
  font-size: 0.85rem;
  color: var(--vz-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.vz-detail-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.vz-detail-badge.pendiente { background: #fef3c7; color: #d97706; }
.vz-detail-badge.localizado { background: #f0fdf4; color: #16a34a; }
.vz-detail-badge.hospitalizado { background: #fef2f2; color: #dc2626; }
.vz-detail-badge.fallecido { background: #f3f4f6; color: #6b7280; }
.vz-detail-verified {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #eff6ff;
  color: #2563eb;
}
.vz-timeline {
  margin-top: 16px;
}
.vz-timeline h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.vz-timeline-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--vz-border);
}
.vz-timeline-item:last-child { border-bottom: none; }
.vz-timeline-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  background: #f1f5f9;
  color: var(--vz-muted);
}
.vz-timeline-body {
  flex: 1;
  min-width: 0;
}
.vz-timeline-author {
  font-weight: 600;
  font-size: 0.85rem;
}
.vz-timeline-time {
  font-size: 0.75rem;
  color: #94a3b8;
}
.vz-timeline-message {
  font-size: 0.85rem;
  margin-top: 4px;
  color: var(--vz-text);
}
.vz-timeline-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 4px;
}
.vz-timeline-status.localizado { background: #f0fdf4; color: #16a34a; }
.vz-timeline-status.hospitalizado { background: #fef2f2; color: #dc2626; }
.vz-timeline-status.fallecido { background: #f3f4f6; color: #6b7280; }

.vz-person-has-report {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

.vz-person-has-report.localizado { background: #f0fdf4; color: #16a34a; }
.vz-person-has-report.hospitalizado { background: #fef2f2; color: #dc2626; }
.vz-person-has-report.fallecido { background: #f3f4f6; color: #6b7280; }

/* Status dots */
.vz-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}
.vz-status-dot.pendiente { background: #d97706; }
.vz-status-dot.localizado { background: #16a34a; }
.vz-status-dot.hospitalizado { background: #dc2626; }
.vz-status-dot.fallecido { background: #6b7280; }

/* Pagination */
.vz-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.vz-pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border: 1px solid var(--vz-border);
  border-radius: 8px;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--vz-text);
  cursor: pointer;
  transition: all 0.2s;
}
.vz-pg-btn:hover:not(:disabled) {
  border-color: var(--vz-blue);
  color: var(--vz-blue);
  background: rgba(0,36,125,0.04);
}
.vz-pg-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.vz-pg-active {
  background: var(--vz-blue) !important;
  color: #fff !important;
  border-color: var(--vz-blue) !important;
}
.vz-pg-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}
.vz-pg-dots {
  padding: 0 4px;
  color: var(--vz-muted);
  font-size: 0.85rem;
}

/* Timeline icon with status colors */
.vz-timeline-icon.localizado { background: #f0fdf4; color: #16a34a; }
.vz-timeline-icon.hospitalizado { background: #fef2f2; color: #dc2626; }
.vz-timeline-icon.fallecido { background: #f3f4f6; color: #6b7280; }
.vz-timeline-icon.pendiente { background: #fef3c7; color: #d97706; }
