body {
  font-family: Arial, sans-serif;
  padding: 0px;
}

input, select, button {
  padding: 8px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 16px;
  box-sizing: border-box;
}

select, button {
  cursor: pointer; 
}

input:focus, select:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}


.button-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

/* Colores personalizados */
.btn-success {
  background-color: #28a745;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-danger {
  background-color: #dc3545;
}

.btn-danger:hover {
  background-color: #c82333;
}


.campo-obligatorio {
  border: 2px solid red !important;
  background-color: #ffe6e6 !important;
  color: red !important;
}

.notificacion-flotante {
  position: fixed;
  top: 20px;
  right: -400px;
  background-color: #e74c3c;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  font-size: 16px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s ease;
}

.notificacion-flotante.mostrar {
  right: 20px;
  opacity: 1;
}


.filtro-activo {
  background-color: #e0f7fa;
  border: 1px solid #00acc1;
}

.color-naranja {
  color: #FF9966;
  text-align: center;
}

#tabla-tabulator {
  margin-top: 0px;
  max-width: 100%;
}

.tabulator {
  font-size: 14px;
}

.tabulator-paginator label {
  font-weight: bold;
}

.tabulator-responsive-collapse {
  font-size: 13px;
}

.tabulator {
  overflow-x: auto;
}
