/* Estilos personalizados adicionales */
body {
    font-family: sans-serif;
}

.container {
    max-width: 1200px; /* Ajusta el ancho máximo del contenedor si es necesario */
}

.card-header {
    font-weight: bold;
}

/* Ajustes menores para la tabla y los filtros si son necesarios */
#filterForm .form-group {
    margin-bottom: 0.5rem; /* Reduce el margen inferior de los grupos de formulario en los filtros */
}

.table th, .table td {
    vertical-align: middle; /* Centra verticalmente el contenido de las celdas */
}

.badge {
    font-size: 0.9em; /* Ajusta el tamaño de la fuente de los badges */
}

/* Estilos para el modal gestionado por Vue */
.custom-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-modal-dialog {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  max-width: 500px;
  width: 100%;
  padding: 0;
}
.custom-modal-header, .custom-modal-footer {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-modal-header {
  border-bottom: 1px solid #eee;
}
.custom-modal-body {
  padding: 1rem;
}
.custom-modal-footer {
  border-top: 1px solid #eee;
  border-bottom: none;
  justify-content: flex-end;
}
.custom-modal-content {
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.custom-modal-header .close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
