/* Custom styles goes here */
.btn-outline-secondary {
    color: #e40046;
    border-color: #e40046;
    background: transparent;
}

.custom-option-basic .custom-option-content {
    padding: 0.40em;
    padding-left: 3.515em;
}


table th .dt-column-title {
    font-weight: bold !important;
}
/* Contenedor de la tabla */
.dt-container {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

/* Paginador */
.dt-paging {
    display: flex;
    justify-content: flex-end;  /* Alinea los botones del paginador a la derecha */
    align-items: center;
    padding: 10px 0;
}

/* Botones del paginador */
.dt-paging-button {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #ced4da;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Paginador cuando está activo */
.dt-paging-button:hover {
    background-color: #007bff;
    color: #fff;
}

    .dt-paging-button.current {
        background-color: #e40046;
        color: #fff;
        border-color: #e40046;
    }

.dt-paging-button.disabled {
    background-color: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
}

/* Información de la tabla */
.dt-info {
    font-size: 14px;
    color: #6c757d;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* Ajustar la fila de paginación para no romper el diseño */
/* Última fila de layout */
.dt-layout-row:last-child {
    margin-top:10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    /* Celdas de la última fila */
    .dt-layout-row:last-child .dt-layout-cell {
        margin-top: 10px;
        display: inline-block;
        
    }





.dt-info {
display:none;
}



/* Contenedor principal de la primera fila (Mostrar registros y Búsqueda) */
 .dt-layout-row:first-of-type {
     padding-bottom:15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px; /* Espacio entre filas */
}

    /* Celdas de la primera fila */
  .dt-layout-row:first-of-type .dt-layout-cell {
        display: flex;
        align-items: center;
        padding: 0 10px;
    }

    /* Contenedor del selector de longitud "Mostrar registros" */
 .dt-layout-row:first-of-type .dt-length {
        display: flex;
        align-items: center;
    }

        /* Estilo para el label dentro del contenedor de longitud */
     .dt-layout-row:first-of-type .dt-length label {
            margin-right: 5px;
            font-weight: 500;
            font-size: 14px;
        }

    /* Estilo para el select de longitud de registros */
 .dt-layout-row:first-of-type .dt-input {
        font-size: 14px;
        padding: 5px 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    /* Contenedor de búsqueda */
     .dt-layout-row:first-of-type .dt-search {
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

        /* Estilo del input de búsqueda (cuando sea visible) */
        .dt-layout-row:first-of-type .dt-search input {
            padding: 5px 10px;
            font-size: 14px;
            border: 1px solid #ccc;
            border-radius: 5px;
            min-width: 200px; /* Asegura que el campo de búsqueda sea lo suficientemente grande */
        }

        /* Si no se muestra la búsqueda, se oculta el contenedor */
       .dt-layout-row:first-of-type .dt-search[style="display: none;"] {
            display: none;
        }

.dt-search label {
    padding-right: 10px;
}


.dt-processing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #e40046;
}

td.dt-empty {
    text-align: center;
    vertical-align: middle;
    height: 100px; /* Altura ajustable para centrar verticalmente */
  
    color: #888;
    font-size: 16px;
}


.menu-header::before, .menu-inner > .menu-header::before {
    background-color: unset !important;
}