/* ============================================================
   PULSANTE ELIMINA TICKET - STORICO (INLINE)
   ============================================================ */

.ticket-card-delete-inline {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticket-card-delete-inline:hover {
    background: #c0392b;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.3);
}

.ticket-card-delete-inline:active {
    transform: translateY(0);
}

/* Responsive: pulsante più piccolo su mobile */
@media (max-width: 768px) {
    .ticket-card-delete-inline {
        padding: 5px 10px;
        font-size: 12px;
    }
}

