/* Stili per il bottone preview nella tabella list view */

/* Bottone preview compatto per la tabella */
.table-preview-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid var(--apple-separator, #e5e5e7) !important;
    border-radius: 6px !important;
    color: var(--apple-blue, #007AFF) !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
    cursor: pointer;
}

.table-preview-btn:hover {
    background: var(--apple-blue, #007AFF) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 122, 255, 0.15);
}

.table-preview-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 122, 255, 0.2);
}

.table-preview-btn i {
    font-size: 0.75rem !important;
    line-height: 1 !important;
}

/* Allineamento con altri bottoni della riga */
td .table-preview-btn {
    margin: 0 auto;
}

/* Stili responsive */
@media (max-width: 768px) {
    .table-preview-btn {
        width: 32px !important;
        height: 32px !important;
    }
    
    .table-preview-btn i {
        font-size: 0.875rem !important;
    }
}