/* Estilos compactos para botones de acción */
.action-buttons {
    padding: 8px 0;
    text-align: center;
}

.btn-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    max-width: 100%;
    justify-content: center;
}

.btn-compact i {
    font-size: 12px;
}

.btn-compact span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-compact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-compact {
        padding: 6px 12px;
        font-size: 13px;
        max-width: 100px;
    }
    
    .btn-compact span {
        display: none;
    }
    
    .btn-compact i {
        font-size: 14px;
    }
}
