table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 2px solid black;
    border-radius: 8px;
}

th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}

.truncate {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-file-label {
    display: flex;
    align-items: center;
    font-family: "FontAwesome"; /* Font Awesome 4.3 usa este nombre */
}

.custom-file-label::after{
    content: none;
}
.custom-file-label::before {
    content: "\f093"; /* Valor por defecto para el ícono de Font Awesome (fa-upload) */
    font-family: "FontAwesome"; /* Usa la familia correcta para Font Awesome 4.3 */
    font-weight: normal; /* Font Awesome 4.3 no usa font-weight 900 */
    padding-right: 10px; /* Espacio entre el ícono y el texto */
    font-size: 16px; /* Tamaño del ícono */
}

.custom-file-label.icon-upload::before {
    content: "\f093"; /* Unicode del ícono de Font Awesome (fa-upload) */
    color: #17a2b8; /* Color del ícono cuando está en estado de carga (text-info) */
}

.custom-file-label.icon-check::before {
    content: "\f00c"; /* Unicode del ícono de Font Awesome (fa-check) */
    color: #28a745; /* Color del ícono cuando se ha seleccionado un archivo (text-success) */
}


/* Asegura que el contenido de la tabla no se desborde */
.table-responsive {
    overflow-x: auto;
}

/* Ajustes específicos para pantallas pequeñas */
@media (max-width: 576px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-responsive table {
        width: 100%;
        min-width: 960px;
    }

    .table-responsive th, 
    .table-responsive td {
        white-space: nowrap;
        padding: 8px;
        font-size: 14px;
    }

    .table-responsive thead {
        display: table-header-group;
    }

    .table-responsive tbody {
        display: table-row-group;
    }

    .table-responsive tr {
        display: table-row;
    }
}

.image-container-repo {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    overflow: hidden;
}
.image-container-repo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header, .title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.logo {
    max-width: 200px;
    height: auto;
}

h2 {
    color: #333;
}
.report-number {
    font-weight: bold;
}