.file-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

#file-input {
    display: none; /* Oculta el input real */
}

#upload-button {
    display: inline-block;
    cursor: pointer;
}

.uploaded-file a.archivo-enlace {
    color: #007bff;
    text-decoration: none;
}

.uploaded-file a.archivo-enlace:hover {
    text-decoration: underline;
}

.remove-file {
    background-color: #343a40;
    color: #fff;
    border: none;
    cursor: pointer;
}

.remove-file:hover {
    background-color: #23272b;
}

@media (max-width: 768px) {
    div.dataTables_wrapper {
        overflow-x: auto;
        display: block;
        width: 100%;
    }

    div.dataTables_filter {
        white-space: nowrap;
        overflow: hidden;
        max-width: 100%;
    }

    div.dataTables_filter input {
        width: 100%;
        max-width: 200px; /* Ajusta el tamaño del input */
    }
}


pre {
    white-space: pre-wrap; /* Permite saltos de línea */
    word-wrap: break-word; /* Rompe palabras largas */
    overflow-wrap: break-word; /* Asegura que no se salga del contenedor */
    font-size: 14px; /* Reduce el tamaño de fuente en móviles */
}

@media (max-width: 768px) {
    pre {
        font-size: 12px; /* Reduce aún más en móviles */
        max-width: 100%;
        overflow-x: hidden;
    }
}

    

/*////////////////////////////*/