.popup_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.popup_content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  width: 380px;
  max-width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 20px 24px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  animation: popupIn 0.25s ease-out;
}
.popup_content::-webkit-scrollbar { width: 6px; }
.popup_content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}
.popup_content h2 {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #333;
}

#iqx_form label {
  display: block;
  margin-bottom: 8px;
  color: #444;
  font-weight: 500;
  font-size: 0.9rem;
}

#iqx_form input, #iqx_form select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 3px;
  font-size: 0.9rem;
}

#iqx_form button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
}

#iqx_form button[type="submit"] {
  background: #0078d7;
  color: #fff;
  margin-left: 10px;
}

#cancel_btn {
  background: #ccc;
  color: #333;
}

#serviciosTable th:last-child,
#serviciosTable td:last-child {
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  width: 160px;
}
