/* ============================================
   PULSANTI UNIFICATI - BASE (Aimatic)
   ============================================ */

.btn-uni {
    display: inline-block;
    padding: 10px 22px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

/* ============================================
   COLORI
   ============================================ */

/* Teal (colore principale Aimatic) */
.btn-uni.btn-teal {
    background-color: #00d9b5;
    color: #062b25;
}

/* Teal outline */
.btn-uni.btn-outline-teal {
    background-color: transparent;
    border: 1.5px solid #00d9b5;
    color: #00d9b5;
}

/* Blu */
.btn-uni.btn-blue {
    background-color: #007bff;
    color: white;
}

/* Verde */
.btn-uni.btn-green {
    background-color: #28a745;
    color: white;
}

/* Rosso */
.btn-uni.btn-red {
    background-color: #dc3545;
    color: white;
}

/* Grigio (azioni neutre, es. Chiudi/Annulla) */
.btn-uni.btn-gray {
    background-color: #6c757d;
    color: white;
}

/* ============================================
   HOVER
   ============================================ */

.btn-uni.btn-teal:hover:not(:disabled):not(.disabled) {
    background-color: #00f0c6;
    transform: translateY(-1px);
}

.btn-uni.btn-outline-teal:hover:not(:disabled):not(.disabled) {
    background-color: rgba(0, 217, 181, 0.12);
    transform: translateY(-1px);
}

.btn-uni.btn-blue:hover:not(:disabled):not(.disabled) {
    background-color: #0056b3;
    transform: translateY(-1px);
}

.btn-uni.btn-green:hover:not(:disabled):not(.disabled) {
    background-color: #1e7e34;
    transform: translateY(-1px);
}

.btn-uni.btn-red:hover:not(:disabled):not(.disabled) {
    background-color: #b02a37;
    transform: translateY(-1px);
}

.btn-uni.btn-gray:hover:not(:disabled):not(.disabled) {
    background-color: #5a6268;
    transform: translateY(-1px);
}

/* ============================================
   DISABILITATO (vale per TUTTI i colori)
   ============================================ */

.btn-uni:disabled,
.btn-uni.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

/* ============================================
   VARIANTI DI DIMENSIONE
   ============================================ */

.btn-uni.small {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-uni.large {
    padding: 14px 30px;
    font-size: 1.1rem;
}
