html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
table, th, td, tr {
    border: 1px solid black;
    border-collapse: collapse;
}
.center-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.95rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #f1f1f1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.toggle-annulla {
    position: relative;
    width: 100px;
    height: 32px;
    overflow: hidden;
}

    .toggle-annulla .label {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity 0.2s ease;
        white-space: nowrap;
    }

    .toggle-annulla .default-label {
        opacity: 1;
    }

    .toggle-annulla .hover-label {
        opacity: 0;
    }

    .toggle-annulla:hover .default-label {
        opacity: 0;
    }

    .toggle-annulla:hover .hover-label {
        opacity: 1;
    }
.btn-azione {
    min-width: 110px;
    padding-left: 12px;
    padding-right: 12px;
}


