*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  'Source Sans 3', sans-serif;
    text-decoration: none;
}

body {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.container{
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}

img {
    max-width: 500%;
    max-height: 500%;
}

h2, h3, h4, p{
    text-align: center;
    color: #4d4d4d;
}

h3{
    text-transform: uppercase;
    font-weight: bold;
}

h6 {
    
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
}

header {
    width: 100%;
}

header p:nth-of-type(1) {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

header p:nth-of-type(2) {
    font-size: 16px;
}

header p:nth-of-type(3) {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: underline;
}

p{
    line-height: 16px;
    font-family: 'Times New Roman', Times, serif;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

tr td:first-child ul li:first-child,
tr td:first-child ul li:nth-child(3){
    font-weight: bold;
}

thead {
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    color: red;
}

td {
    font-family: 'Times New Roman', Times, serif;
    font-size: 12px;
    text-align: center;
}

strong {
    font-weight: bold;
}

.dataTables_filter {
    position: relative;
    display: inline-flexbox;
}

/* Cuadro de dialogo */
.dataTables_filter .tooltiptext {
    visibility: hidden;
    width: 240px;
    background-color: #838282;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: 35px;
    right: 1px;
    margin-left: 250px;
    opacity: 0;
    transition: opacity 0.3s;
}

.dataTables_filter:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.btn-volver button{
  background-color: rgb(25, 98, 255);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.btn-volver button:hover{
    background-color: rgb(17, 83, 226);
}

@media screen and (max-width: 576px) {
    /* Estilos para pantallas de hasta 576px (celulares) */
    .table-responsive {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      overflow-y: hidden;
      border-collapse: collapse;
      width: 100%;
      margin-bottom: 1rem;
      overflow-y: hidden;
      -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive > .table {
      margin-bottom: 0;
      border-radius: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
      white-space: nowrap;
    }
  }

  .Supervisores-Table > tr > td {
    font-size: 16px;
  }

  .Supervisores-Table td:nth-of-type(1) {
    font-weight: bold;
  }