.header {
    position: fixed;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: teal;
}

.header a.w3-left {
    position: absolute;
    left: 0;
}

.header .title {
    text-align: center;
    flex-grow: 1;
}

.w3-bar-item.w3-right {
    margin-left: auto;
}

.monitor
{
    display: inline-block;
    padding: 5px;
    border: 1px solid blue;   
}

.sameLine
{
    display: inline;
}

.slidecontainer {
    width: 100%;
}
  
.slider {
    -webkit-appearance: none;
    width: 65%;
    height: 25px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}
  
.slider:hover {
    opacity: 1;
}
  
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}
  
.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

/* barra de progreso */
.progress-bar {
    height: 10px;
    background-color: #ccc;
    position: relative;
    overflow: hidden;
    max-width: 600px;
}

.progress-bar::after {
    content: '';
    display: block;
    background-color: blue;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    animation: progress-bar 2s linear infinite;
}

@keyframes progress-bar {
    to {
        left: 100%;
    }
}

body {
    color-scheme: light;
    background-color: white;
}

@media (max-width: 375px) {
    .altaModifRegistro {
        padding: 0.01em 2px;
    }
}

@media (max-width: 768px) {
    h1{
        font-size: 24px;
    }
}

.custom-border {
    border: 2px solid #000000;
    border-radius: 5px;
    padding: 5px;
    display: block;
    margin: auto;
    text-align: center;
}

.custom-checkout {
    width: 20px;
    height: 20px;
    transform: scale(1.5);
    margin: 25px;
}

.w3-table td,
.w3-table th,
.w3-table-all td,
.w3-table-all th {
    padding: 6px 6px;
    text-align: center;
    vertical-align: middle
}

.cargandoModulos {
    width: calc(100% - 250px);
    height: 100vh;
    left: 33%;
    border: 0px;
    position: absolute;
    top: 50%;
}

.cargandoReportes,.cargandoRegistros {
    width: calc(100% - 750px);
    height: 100vh;
    left: 33%;
    border: 0px;
    position: absolute;
    top: 50%;
}

.formCarga{
    display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
}

.botonesConSignoMas {
    padding: 4px;
    font-weight: bold;
}

.custom-padding {
    padding-top: 35px !important;
    padding-bottom: 64px !important;
}

#contenedorObservaciones{
    width: 50%;
}
@media (max-width: 768px) {
    .responsive-table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        background-color: #f9f9f9;
    }

    
    .responsive-table th {
        display: none;
    }
    
    .responsive-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
    }
    
    .responsive-table td:before {
        content: attr(data-label);
        font-weight: bold;
        color: #555;
    }
    #contenedorObservaciones{
        width: 100%;
    }

    td.td-button-center{
        display: inline-block;
    }
}

.tablaCentrada {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Maxima altura para todas las tablas para que aparezca el scroll horizontal */
@media (min-width: 768px) {
    .table-container{
        max-height: 60vh;
    }
}

.checkbox-container {
    display: flex;
    flex-direction: column;
    align-items: center;       /* Centra horizontalmente */
    justify-content: center;   /* Centra verticalmente (opcional) */
    text-align: center;       /* Alinea el texto del párrafo */
  }

.checkbox-list {
    display: flex;
    flex-direction: column;  /* Apila los elementos verticalmente */
    gap: 10px;              /* Espacio entre elementos (opcional) */
    list-style: none; 
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;    /* Alinea el checkbox y el texto verticalmente */
    gap: 8px;              /* Espacio entre el checkbox y el texto */
  }
  
  /* Asegura que los inputs (checkboxes) no tengan margen extra */
  .checkbox-item input {
    display: flex;
    margin: 0;             /* Elimina márgenes por defecto */
    top: 0;
  }