.ipv6-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px;
}

.ipv6-header {
  text-align: center;
  margin-bottom: 28px;
}

.ipv6-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0066FF, #3385FF, #0052CC);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
  color: white;
  box-shadow: 0 4px 20px rgba(0,102,255,0.25);
}

.ipv6-header h1 {
  font-size: 22px;
  font-weight: 800;
  color: #0052CC;
  letter-spacing: -0.3px;
  margin: 0 0 4px;
}

.ipv6-header p {
  font-size: 13px;
  color: rgba(0,102,255,0.5);
  font-weight: 500;
  margin: 0;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,102,255,0.05), 0 8px 30px rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.08);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  color: white;
}

.stat-icon.blue { background: linear-gradient(135deg, #0066FF, #3385FF); }
.stat-icon.green { background: linear-gradient(135deg, #00C853, #69F0AE); }
.stat-icon.orange { background: linear-gradient(135deg, #FF9800, #FFB74D); }
.stat-icon.purple { background: linear-gradient(135deg, #7C3AED, #A78BFA); }
.stat-icon.red { background: linear-gradient(135deg, #FF3B30, #FF6B6B); }

.stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #0052CC;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 12px;
  color: rgba(0,102,255,0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PANELS GRID ===== */
.panels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .panels-grid { grid-template-columns: 1fr; }
}

.ipv6-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,102,255,0.05), 0 8px 30px rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.08);
}

.card-title {
  font-size: 16px;
  font-weight: 800;
  color: #0052CC;
  margin: 0 0 4px;
}

.card-desc {
  font-size: 12px;
  color: rgba(0,102,255,0.4);
  margin: 0 0 16px;
}

.card-actions {
  margin-top: 14px;
}

.empty-msg {
  text-align: center;
  color: rgba(0,102,255,0.4);
  padding: 20px;
  font-size: 13px;
  margin: 0;
}

/* ===== QUICK GRID ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .quick-grid { grid-template-columns: 1fr; }
}

.quick-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0,102,255,0.05), 0 8px 30px rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.08);
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,102,255,0.12);
}

.quick-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 16px;
  color: white;
}

.quick-icon.blue { background: linear-gradient(135deg, #0066FF, #3385FF); }
.quick-icon.green { background: linear-gradient(135deg, #00C853, #69F0AE); }
.quick-icon.orange { background: linear-gradient(135deg, #FF9800, #FFB74D); }
.quick-icon.red { background: linear-gradient(135deg, #FF3B30, #FF6B6B); }

.quick-title {
  font-size: 14px;
  font-weight: 700;
  color: #0052CC;
  margin-bottom: 2px;
}

.quick-desc {
  font-size: 11px;
  color: rgba(0,102,255,0.4);
}

/* ===== TABLE ===== */
.tbl {
  width: 100%;
  border-collapse: collapse;
}

.tbl thead th {
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,102,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(0,102,255,0.08);
}

.tbl tbody td {
  padding: 8px;
  font-size: 12px;
  color: #2D3548;
  border-bottom: 1px solid rgba(0,102,255,0.04);
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 16px;
  font-size: 10px;
  font-weight: 700;
}

.badge-success { background: rgba(0,200,83,0.1); color: #00C853; }
.badge-warning { background: rgba(255,152,0,0.1); color: #FF9800; }
.badge-danger { background: rgba(255,59,48,0.1); color: #FF3B30; }
.badge-info { background: rgba(0,102,255,0.1); color: #0066FF; }
.badge-purple { background: rgba(124,58,237,0.1); color: #7C3AED; }

/* ===== BUTTONS — !important para pisar Bootstrap/Material Dashboard ===== */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  white-space: nowrap !important;
}

.btn:active { transform: scale(0.97) !important; }
.btn:focus  { outline: none !important; box-shadow: none !important; }

.btn-blue {
  background: linear-gradient(135deg, #0066FF, #3385FF) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(0,102,255,0.3) !important;
}
.btn-blue:hover,
.btn-blue:focus { background: linear-gradient(135deg, #0052CC, #0066FF) !important; color: #fff !important; text-decoration: none !important; }

.btn-ghost {
  background: rgba(0,102,255,0.07) !important;
  color: #0066FF !important;
  border: 1px solid rgba(0,102,255,0.18) !important;
}
.btn-ghost:hover,
.btn-ghost:focus { background: rgba(0,102,255,0.14) !important; color: #0052CC !important; text-decoration: none !important; }

.btn-green {
  background: linear-gradient(135deg, #0066FF, #3385FF) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(0,102,255,0.3) !important;
}
.btn-green:hover,
.btn-green:focus { background: linear-gradient(135deg, #0052CC, #0066FF) !important; color: #fff !important; text-decoration: none !important; }

.btn-orange {
  background: linear-gradient(135deg, #FF8C00, #FFA500) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 2px 10px rgba(255,140,0,0.3) !important;
}
.btn-orange:hover,
.btn-orange:focus { background: linear-gradient(135deg, #E67E00, #FF8C00) !important; color: #fff !important; text-decoration: none !important; }

.btn-danger {
  background: linear-gradient(135deg, #FF3B30, #FF6B6B) !important;
  color: #fff !important;
  border: none !important;
}
.btn-danger:hover,
.btn-danger:focus { background: linear-gradient(135deg, #E03328, #FF3B30) !important; color: #fff !important; text-decoration: none !important; }

.btn-sm { height: 30px !important; padding: 0 10px !important; font-size: 11px !important; border-radius: 8px !important; }

/* Botones deshabilitados */
.btn[disabled], .btn:disabled {
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* ===== FORM ===== */
.fg { margin-bottom: 14px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

@media (max-width: 480px) {
  .fg-row { grid-template-columns: 1fr; }
}

.fl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,102,255,0.6);
  margin-bottom: 6px;
  display: block;
}

.fl .req { color: #0066FF; }

.fc {
  width: 100%;
  height: 42px;
  border: 1.5px solid rgba(0,102,255,0.12);
  border-radius: 12px;
  padding: 0 14px;
  font-size: 13px;
  font-family: inherit;
  background: rgba(255,255,255,0.7);
  color: #1A2035;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fc:focus {
  outline: none;
  border-color: #0066FF;
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
  background: white;
}

textarea.fc { height: auto; min-height: 70px; padding: 10px 14px; }

select.fc {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239BA3B3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.hint { font-size: 11px; color: rgba(0,102,255,0.4); margin-top: 4px; }

/* ===== LIST ITEMS ===== */
.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0,102,255,0.03);
  border-radius: 10px;
  margin-bottom: 6px;
  font-size: 12px;
}

.list-item code {
  font-size: 11px;
  background: rgba(0,102,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  color: #0052CC;
}

/* ===== SUMMARY ===== */
.sum-grid { display: grid; gap: 6px; }

.sum-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: rgba(0,102,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(0,102,255,0.06);
}

.sum-key { font-size: 11px; color: rgba(0,102,255,0.5); font-weight: 600; }
.sum-val { font-size: 12px; color: #0052CC; font-weight: 600; }

/* ===== CHECKBOX ===== */
.check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(0,102,255,0.03);
  border-radius: 12px;
  margin-top: 14px;
  border: 1px solid rgba(0,102,255,0.08);
}

.chk {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 2px solid rgba(0,102,255,0.2);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s ease;
  position: relative;
}

.chk:checked {
  background: linear-gradient(135deg, #0066FF, #3385FF);
  border-color: #0066FF;
}

.chk:checked::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: white;
}

.chk-label { font-size: 12px; color: rgba(0,102,255,0.55); line-height: 1.5; }

/* ===== STEP BAR ===== */
.step-bar {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(0,102,255,0.1);
  transition: background 0.2s ease;
}

.step-dot.active { background: linear-gradient(90deg, #0066FF, #3385FF); }
.step-dot.done { background: #0066FF; }

.step-label {
  font-size: 11px;
  color: rgba(0,102,255,0.4);
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0,30,80,0.5) !important;
  z-index: 2147483647 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,50,150,0.3);
  animation: modalIn 0.2s ease;
  position: relative;
  z-index: 1;
}

.modal-lg { max-width: 700px; }

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

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(0,102,255,0.08);
  position: sticky;
  top: 0;
  background: white;
  border-radius: 16px 16px 0 0;
  z-index: 1;
}

.modal-header h3 {
  font-size: 15px;
  font-weight: 800;
  color: #0052CC;
  margin: 0;
}

.modal-close {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  background: rgba(0,102,255,0.06);
  color: rgba(0,102,255,0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s ease;
}

.modal-close:hover { background: rgba(0,102,255,0.1); color: #0066FF; }

.modal-body { padding: 16px 20px; }

.modal-footer {
  padding: 12px 20px;
  border-top: 1px solid rgba(0,102,255,0.08);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  position: sticky;
  bottom: 0;
  background: white;
  border-radius: 0 0 16px 16px;
}

/* ===== SUCCESS BOX ===== */
.success-box {
  text-align: center;
  padding: 30px 20px;
}

.ok-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0066FF, #3385FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 26px;
  color: white;
  box-shadow: 0 6px 24px rgba(0,102,255,0.3);
}

.success-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0052CC;
  margin: 0 0 6px;
}

.success-box p {
  font-size: 13px;
  color: rgba(0,102,255,0.5);
  margin: 0;
}

/* ===== GLOBAL FORM-CONTROL OVERRIDE ===== */
.form-control {
  border: 1.5px solid rgba(0,102,255,0.12) !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  font-size: 13px !important;
  background: rgba(255,255,255,0.7) !important;
  color: #1A2035 !important;
  box-shadow: none !important;
  height: 42px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: #0066FF !important;
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1) !important;
  background: rgba(255,255,255,0.95) !important;
  outline: none;
}

textarea.form-control {
  height: auto !important;
  min-height: 70px;
  padding: 10px 14px !important;
}

select.form-control {
  height: 42px !important;
  padding: 0 14px !important;
}

.form-group.has-error .form-control {
  border-color: #FF3B30 !important;
}

.form-group.has-success .form-control {
  border-color: #00C853 !important;
}

/* ===== SOLICITUD FULLSCREEN MODAL ===== */
.sol-overlay { position:fixed; inset:0; z-index:2147483647;
  background:rgba(0,20,60,0.6); backdrop-filter:blur(4px);
  display:none; align-items:center; justify-content:center; padding:16px; }
.sol-overlay.open { display:flex; }

.sol-modal { background:#fff; border-radius:20px; width:95vw; max-width:1100px;
  height:92vh; display:flex; flex-direction:column;
  box-shadow:0 30px 80px rgba(0,50,150,0.35); overflow:hidden; }

/* Header */
.sol-hd { display:flex; align-items:center; padding:14px 24px;
  border-bottom:1px solid #eef2ff; flex-shrink:0; gap:16px; }
.sol-hd h2 { font-size:14px; font-weight:800; color:#0052CC; margin:0; white-space:nowrap; font-family:inherit; }
.sol-progress-wrap { flex:1; height:6px; background:#eef2ff; border-radius:3px; overflow:hidden; }
.sol-progress-bar { height:100%; background:linear-gradient(90deg,#0066FF,#00C6FF);
  border-radius:3px; transition:width 0.4s ease; width:0%; }
.sol-close { width:32px; height:32px; border-radius:8px; border:none;
  background:#f0f4ff; color:#0052CC; cursor:pointer; font-size:20px;
  display:flex; align-items:center; justify-content:center; font-family:inherit; }
.sol-close:hover { background:#dce8ff; }

/* Body split */
.sol-body-wrap { display:flex; flex:1; overflow:hidden; }

/* Sidebar nav */
.sol-sidebar { width:220px; flex-shrink:0; border-right:1px solid #eef2ff;
  overflow-y:auto; padding:12px 0; background:#fafbff; }
.sol-nav-item { display:flex; align-items:center; gap:10px; padding:9px 16px;
  cursor:pointer; font-size:12.5px; color:#6B7A99; font-weight:500;
  border-left:3px solid transparent; transition:all 0.15s; font-family:inherit; }
.sol-nav-item:hover { background:#eef2ff; color:#0052CC; }
.sol-nav-item.active { background:#e8f0ff; color:#0052CC; font-weight:700; border-left-color:#0066FF; }
.sol-nav-item.done { color:#00875A; }
.sol-nav-dot { width:22px; height:22px; border-radius:50%; background:#e8edf8;
  font-size:10px; font-weight:800; display:flex; align-items:center;
  justify-content:center; color:#6B7A99; flex-shrink:0; }
.sol-nav-item.active .sol-nav-dot { background:#0066FF; color:#fff; }
.sol-nav-item.done .sol-nav-dot { background:#00C853; color:#fff; }

/* Scrollable content */
.sol-content { flex:1; overflow-y:auto; scroll-behavior:smooth; }

/* Observation panel (right side, only when observado) */
.sol-obs-panel {
  width:280px; flex-shrink:0; border-left:2px solid #FFE0B2;
  padding:20px; overflow-y:auto; display:none;
  background:linear-gradient(180deg,#FFF8E1,#FFF3E0);
}
.sol-obs-panel.show { display:block; }
.sol-obs-panel h4 {
  font-size:11px; font-weight:800; color:#BF360C; margin:0 0 14px;
  text-transform:uppercase; letter-spacing:.8px; display:flex;
  align-items:center; gap:6px; font-family:inherit;
}
.sol-obs-panel .obs-text {
  font-size:13px; color:#4E342E; line-height:1.7;
  padding:14px 16px; background:#fff8e1; border-radius:10px;
  border-left:4px solid #FF9800;
  position:sticky; top:0;
}

/* Sections */
.sol-section { padding:28px 32px; border-bottom:1px solid #f0f4ff; }
.sol-section:last-child { border-bottom:none; }
.sol-sec-hd { display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; }
.sol-sec-icon { width:44px; height:44px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:18px; }
.sol-sec-icon.blue   { background:#e8f0ff; color:#0066FF; }
.sol-sec-icon.indigo { background:#ede9ff; color:#5B21B6; }
.sol-sec-icon.teal   { background:#e0f7f6; color:#00897B; }
.sol-sec-icon.purple { background:#f3e8ff; color:#7C3AED; }
.sol-sec-icon.orange { background:#fff3e0; color:#E65100; }
.sol-sec-icon.green  { background:#e8f5e9; color:#2E7D32; }
.sol-sec-icon.navy   { background:#e8eef8; color:#1A3A6B; }
.sol-sec-title { font-size:14px; font-weight:800; color:#1A2035; margin:0 0 3px; font-family:inherit; }
.sol-sec-desc { font-size:11px; color:#6B7A99; margin:0; line-height:1.5; }

/* Type card picker */
.type-card-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.type-card { border:2px solid #e0e7ff; border-radius:14px; padding:20px;
  cursor:pointer; transition:all 0.18s; background:#fafbff; user-select:none; }
.type-card:hover { border-color:#0066FF; background:#f0f5ff; }
.type-card.selected { border-color:#0066FF; background:rgba(0,102,255,0.06);
  box-shadow:0 0 0 4px rgba(0,102,255,0.1); }
.type-card .tc-icon { font-size:30px; margin-bottom:10px; }
.type-card .tc-title { font-size:13px; font-weight:800; color:#0052CC; margin-bottom:5px; font-family:inherit; }
.type-card .tc-desc { font-size:11px; color:#6B7A99; line-height:1.5; }
.type-card .tc-badge { display:inline-block; margin-top:8px; background:#e8f0ff;
  color:#0052CC; font-size:10px; font-weight:700; padding:2px 8px; border-radius:6px; }

/* Toggle switch */
.toggle-grid { display:flex; flex-direction:column; }
.toggle-row { display:flex; align-items:flex-start; justify-content:space-between;
  padding:13px 0; border-bottom:1px solid #f0f4ff; gap:16px; }
.toggle-row:last-child { border-bottom:none; }
.toggle-info .toggle-label { font-size:13px; font-weight:700; color:#1A2035; font-family:inherit; }
.toggle-info .toggle-hint  { font-size:11px; color:#6B7A99; line-height:1.4; margin-top:3px; }
.toggle-sw { position:relative; width:44px; height:24px; flex-shrink:0; margin-top:4px; }
.toggle-sw input { opacity:0; width:0; height:0; position:absolute; }
.toggle-track { position:absolute; inset:0; background:#d0d7e8; border-radius:12px;
  cursor:pointer; transition:background 0.2s; }
.toggle-sw input:checked + .toggle-track { background:#0066FF; }
.toggle-track::before { content:''; position:absolute; width:18px; height:18px;
  border-radius:50%; background:#fff; top:3px; left:3px;
  transition:transform 0.2s; box-shadow:0 1px 4px rgba(0,0,0,0.2); }
.toggle-sw input:checked + .toggle-track::before { transform:translateX(20px); }

/* PDF drop zone */
.drop-zone { border:2px dashed #b0c4ff; border-radius:14px; padding:36px 20px;
  text-align:center; cursor:pointer; transition:all 0.2s; background:#f8faff; }
.drop-zone:hover, .drop-zone.drag-over { border-color:#0066FF; background:#f0f5ff; }
.drop-zone i { font-size:36px; color:#4d80f0; display:block; margin-bottom:10px; }
.drop-zone p { font-size:13px; color:#6B7A99; margin:0; }
.drop-zone .dz-name { font-size:12px; color:#0052CC; font-weight:700; margin-top:10px; display:none; }

/* Dynamic table for equipos / abonados */
.dyn-add-form { background:#f8faff; border-radius:14px; padding:16px 18px; margin-bottom:14px; }
.dyn-add-form .card-title { font-size:12px; font-weight:700; color:#0052CC; margin-bottom:12px;
  text-transform:uppercase; letter-spacing:.5px; font-family:inherit; }
.dyn-table { width:100%; border-collapse:collapse; font-size:12px; }
.dyn-table th { padding:8px 10px; color:#6B7A99; font-weight:600; text-align:left;
  border-bottom:2px solid #eef2ff; white-space:nowrap; font-family:inherit; }
.dyn-table td { padding:7px 10px; border-bottom:1px solid #f4f6fb; vertical-align:middle; }
.dyn-table tbody tr:last-child td { border-bottom:none; }
.dyn-table tbody tr:hover td { background:#f8faff; }
.dyn-empty { text-align:center; padding:20px; color:#9BA8C0; font-size:12px;
  background:#f8faff; border-radius:10px; margin-top:8px; }

/* Field alert/hint box */
.field-alert { background:#f0f5ff; border-left:3px solid #4d80f0;
  border-radius:0 8px 8px 0; padding:6px 10px; font-size:11px;
  color:#3a5bbf; margin-top:5px; line-height:1.4; }

/* Footer */
.sol-footer { padding:12px 28px; border-top:1px solid #eef2ff; display:flex;
  align-items:center; justify-content:flex-end; gap:10px; flex-shrink:0;
  background:#fff; border-radius:0 0 20px 20px; }

@media (max-width:860px) {
  .sol-sidebar { display:none !important; }
  .sol-section { padding:20px 16px; }
  .type-card-grid { grid-template-columns:1fr; }
  .sol-modal { width:98vw; height:96vh; }
}
