﻿
@import "navbar.css";

/* GRID */

/* Stile per la riga selezionata */
table tbody tr {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075) !important;
}

table tbody tr.table-active {
    background-color: rgba(13, 110, 253, 0.15) !important;
}

/* Stile per i pulsanti popup disabilitati */
.mp-popup-btn.disabled,
.mp-popup-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Nascondi colonne con classe hidden-column */
th.hidden-column,
td.hidden-column {
    display: none;
}

/* ======================= */