* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Definir fuentes */
@font-face {
  font-family: 'ImpactRegular';
  src: url('fonts/impact/impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SmileySans';
  src: url('fonts/smiley_sans/SmileySans-Oblique.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'ImpactRegular', sans-serif;
  background: #FFF;
  color: #132441;
  min-height: 100vh;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 18px;
}

h3 {
  /* font-family: 'SmileySans', sans-serif; */
  font-size: 18px;
  font-weight: lighter;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 18px;
}

input {
  font-size: 18px;
}

select {
  font-size: 17px;
}

button {
  font-size: 16px;
  cursor: pointer;
  border: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.general-container {
  width: 90%;
  max-width: 1000px;
  margin: 0px auto;
}

table.dataTable thead th {
  background-color: #3451A3;
  color: #fff;
  padding: 12px;
  text-align: center; /* Alinea los encabezados al centro */
  white-space: nowrap; /* Evita que el texto se desborde verticalmente */
  border-bottom: 2px solid #457B9D;
  font-size: 14px;
}

table.dataTable td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap; /* Evita que el texto de las celdas se desborde verticalmente */
  vertical-align: middle; /* Alineación vertical centrada */
  border-bottom: 1px solid #ddd; 
}

table.dataTable tbody tr:hover {
  background-color: rgba(52, 81, 163, 0.3); /* Azul casi transparente */
  transition: background-color 0.3s ease; /* Transición suave */
  cursor: default;
}

table.dataTable td a {
  color: rgba(98, 139, 53, 0.8);
  font-size: 14px;
}

table.dataTable td .link-delete {
  color: rgba(255, 0, 0, 0.8);
  font-size: 14px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  text-decoration: none;
  display: inline-block; /* Muestra los botones de paginación en línea */
}

.dataTables_wrapper .dataTables_paginate .paginate_button a {
  text-decoration: none;
  color: #3451A3;
  letter-spacing: 5px;
}

@media (max-width: 768px) { 
  div.dataTables_wrapper div.dataTables_filter input {
    width: 120px!important;
  }

  .dataTables_length{
    margin-bottom: 10px;
  }
}
