/* Estilo para seleccionar la fila de la tabla y luego se va a editar */

.datatables-style tbody tr {
    cursor: pointer;
}

.datatables-style tbody tr:hover {
    background-color: #f5f5f5;
}

/* Estilos para eliminar la línea inferior */
.table-responsive {
    border: none;
    box-shadow: none;
}

.datatables-style {
    border-collapse: collapse;
    border: none;
    box-shadow: none;
}

.datatables-style th {
    border-color: #d9d9d9;
    font-size: 0.65rem !important;
} 

.datatables-style td {
    border-color: #d9d9d9;
    font-size: 0.75rem !important;
}

#users-table_filter {
    display: none; /* Oculta la barra de búsqueda global */
}

#orders-table_filter {
    display: none; /* Oculta la barra de búsqueda global */
}

#enterprises-table_filter {
    display: none; /* Oculta la barra de búsqueda global */
}

.dataTables_length {
    display: none !important;
}

.dataTables_info {
    font-size:12px
}

.table-bordered td, .table-bordered th {
    border-color: #ccc; /* Color de los bordes */
}

.timeline {
    list-style: none;
    padding: 0;
    position: relative;
    margin: 0 auto; /* Centrar la línea de tiempo */
    width: 100%; /* Ajustar el ancho según el contenido */
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px; /* Colocar la línea vertical en el centro */
    width: 2px;
    height: 100%;
    background: #dee2e6;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    padding: 0;
}
.timeline-item > p {
    margin-left: 57.65px;
    margin-top: -41px;
    font-size: 12px;
    background-color: #f6f6f682;
    color: #7a7a7a;
    padding: 5px 0 7px 10px;
    border-radius: 7px;
}

.timeline-item > p:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 46px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 10px;
    border-color: #f6f6f682 transparent transparent transparent;
    transform: rotate(224deg);
  }
  
.timeline-icon {
    position: relative;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #dee2e6;
    cursor: pointer;
}
.timeline-icon i {
    font-size: 20px;
}
.timeline-icon:hover {
    border-color: #FF9800;
    background-color: #fff3ce;
    color: #e68b05 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: .5em 0em !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background:none !important;
    border: none !important;
}

/* Asegura que DataTables responsive use el 100% del contenedor */
table.dataTable {
width: 100% !important;
}

.dataTables_wrapper .dataTables_scroll {
overflow: auto;
}

/* Ocultar columnas marcadas como dt-no-details en detalle responsive */
table.dataTable .dtr-details td.dt-no-details {
    display: none !important;
}