﻿/* Customize the label (the container) */

.body-none {
    background: none; /* Esto permite que las páginas hijas definan su propio fondo */
}

.dataTables_wrapper .top-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin: 0;
}

/* Ajuste visual para botones de paginación */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 10px; /* igual que el resto de la tabla */
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 2px;
    color: #3498db;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        background-color: #3498db;
        color: #fff;
    }

    .dataTables_wrapper .dataTables_paginate .paginate_button.current {
        background-color: #3498db;
        color: #fff;
        font-weight: bold;
    }

.modal-content {
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
}

.movible {
    position: absolute;
    cursor: move;
    transition: box-shadow 0.2s ease;
}

.modo-edicion .movible {
    outline: 2px dashed orange;
    box-shadow: 0 0 5px rgba(255, 165, 0, 0.8);
    z-index: 1000;
}

