/*
Template Name: Velzon - Admin & Dashboard Template
Author: Themesbrand
Website: https://themesbrand.com/
Contact: support@themesbrand.com
File: Custom Css File
*/

/* ========================================
   Estilos personalizados para DataTables
   ======================================== */

/* Dropdown de acciones en tabla - Cursor pointer */
.dropdown-menu .dropdown-item {
    cursor: pointer !important;
    user-select: none;
}



/* Icono dentro del dropdown */
.dropdown-menu .dropdown-item i {
    font-size: 1rem;
}

/* ========================================
   Estilos para modales con scroll vertical
   ======================================== */

/* Modal con scroll vertical cuando es muy grande */
.modal-dialog-scrollable .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Ajuste para modales extra grandes */
.modal-dialog-scrollable.modal-xl .modal-body {
    max-height: calc(100vh - 220px);
    overflow-y: auto;
}

/* Ajuste para modales grandes */
.modal-dialog-scrollable.modal-lg .modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}