/* ==== Mejora visual para modales ==== */
.modal-content {
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
  border-radius: 10px;
}

.modal.fade .modal-dialog {
  transform: translateY(-20px);
  transition: transform 0.3s ease-out;
}
.modal.show .modal-dialog {
  transform: translateY(0);
}

/* ==== Tablas y botones ==== */
.table-bordered {
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.btn {
  border-radius: 6px;
}

.btn:hover, .btn:focus {
  transform: scale(1.02);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
}

/* ==== Encabezados sticky en tablas ==== */
thead th {
  position: sticky;
  top: 0;
  background-color: #f8f9fa;
  z-index: 2;
}

/* ==== Separador decorativo entre secciones ==== */
.hr-decorative {
  border-top: 2px dashed #ffb347;
  width: 80%;
  margin: 40px auto;
}

/* ==== Ãconos dentro de tÃ­tulos ==== */
h3 i, h6 i {
  margin-right: 8px;
}

.hr-decorative {
  border-top: 2px dashed #ffb347;
  width: 80%;
  margin: 40px auto;
}
